Table of Contents
Each Sub-Entity in Supportable has a list of Payers which refer to insurance companies and other entities used to pay for services.
Sample Request #
Headers | Authorization = Bearer [token] |
Parameters | None |
Body | None |
GET https://connect.supportableapp.com/api/sub-entities/{subEntityId}/payers
Sample Response JSON #
Status: 200
[ { "id": "61c05c6a096d0bf1a2383826", "status": true, "name": "All Savers/UHC", "type": { "id": "624eb78318c58b8291b9be72", "status": true, "name": "Commercial" } }, { "id": "61c05c6a096d0bf1a2383900", "status": true, "name": "Blue Plus PMAP (Medicaid)", "type": { "id": "624eb78318c58b8291b9be73", "status": true, "name": "PMAP" } }, { "id": "61c05c6a096d0bf1a23837e6", "status": true, "name": "Aetna", "type": { "id": "624eb78318c58b8291b9be72", "status": true, "name": "Commercial" } }, . . . ]
Notes on Values #
Attribute | Data Type | Description |
---|---|---|
id | string | The unique identifier of the Payer. |
status | boolean | Whether the Payer is active in Supportable. |
name | string | The name of the Payer as it appears in the application. |
type | object | The Payer Type with which the Payer is associated. |
type.id | string | The unique identifier of the Payer Type. |
type.status | boolean | Whether the Payer Type is active in Supportable. |
type.name | string | The name of the Payer Type. |