GET
/
public
/
v1
/
payors
/
{payor_id}
curl --request GET \
  --url https://api.silnahealth.com/public/v1/payors/{payor_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "AETNA",
  "alternate_identifiers": [
    {
      "identifier": "AETNA_INSC",
      "standard": "AVAILITY",
      "payor_types": [
        "COMMERCIAL",
        "MEDICARE"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

payor_id
string
required

Response

200
application/json
Payors Response

Payors Response

id
string
required

The Silna Identifier for the payor

name
string
required

The name of the payor

Example:

"AETNA"

alternate_identifiers
object[]
required

The alternate identifiers associated with the payor

Alternate Identifiers Response