Payer

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 #

HeadersAuthorization = Bearer [token]
ParametersNone
BodyNone
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 #

AttributeData TypeDescription
idstringThe unique identifier of the Payer.
statusbooleanWhether the Payer is active in Supportable.
namestringThe name of the Payer as it appears in the application.
typeobjectThe Payer Type with which the Payer is associated.
type.idstringThe unique identifier of the Payer Type.
type.statusbooleanWhether the Payer Type is active in Supportable.
type.namestringThe name of the Payer Type.