Skip to main content
GET
/
eligibility
cURL
curl --request GET \
  --url https://api.clarionhealth.com/v1/eligibility \
  --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.

Query Parameters

customer_patient_id
string

Filter eligibility checks by the customer-provided patient identifier

status
enum<string>

Filter eligibility checks by status

Available options:
in-progress,
completed,
queued
limit
integer
default:100

Maximum number of results to return. Defaults to 100, maximum is 1000.

Required range: 1 <= x <= 1000

Response

List of eligibility checks

  • 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"