Skip to main content
POST
/
eligibility
cURL
curl --request POST \
  --url https://api.clarionhealth.com/v1/eligibility \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient": {
    "first_name": "John",
    "last_name": "Doe",
    "date_of_birth": "1990-01-01",
    "member_id": "X12345678",
    "customer_patient_id": "1234567890"
  },
  "insurance": {
    "payer_id": "XYZ123"
  },
  "provider": {
    "organization_name": "Acme Medical Center",
    "npi": "1234567890"
  }
}'
{
  "id": 123,
  "status": "in-progress",
  "created_at": "2023-11-07T05:31:56Z",
  "customer_patient_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
patient
object
required
insurance
object
required
provider
object
required

Response

Eligibility check submitted successfully. The check is being processed asynchronously. You will receive a webhook notification when the check completes. You can also poll the GET endpoint to check status.

id
integer
required

Unique identifier for this eligibility check request

status
enum<string>
required

Current status of the eligibility check

Available options:
in-progress
created_at
string<date-time>

Timestamp when the request was created

customer_patient_id
string | null

The customer-provided patient identifier, if provided