Skip to main content
GET
/
eligibility
/
{id}
cURL
curl --request GET \
  --url https://api.clarionhealth.com/v1/eligibility/{id} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "status": "completed",
    "outcome": "success",
    "coverage": {
      "is_active_today": true,
      "checked_date": "2023-12-25",
      "plan_name": "Freedom Network",
      "payer_name": "United Healthcare",
      "group_number": "1234567890",
      "member_id": "X12345678"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "customer_patient_id": "1234567890"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

The ID of the eligibility check request

Response

Eligibility check details

  • Option 1
  • Option 2
  • Option 3
id
integer
required
status
enum<string>
required
Available options:
completed
outcome
enum<string>
required
Available options:
success,
not-supported
coverage
object
required
created_at
string<date-time>
customer_patient_id
string | null
Example:

"1234567890"