Quickstart
Health
Assistants
Phone Numbers
Referral Management
Referral Management
List Referrals
Returns all referrals available to your organization
GET
/
workflow
/
inbound-referral
Copy
Ask AI
curl --request GET \
--url https://api.clarionhealth.com/v1/workflow/inbound-referral \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
[
{
"id": 123,
"organization_id": 123,
"patient_id": 123,
"workflow_id": 123,
"referral_source": "<string>",
"date_referral_received_by_clinic": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"appointment_id": 123,
"referral_reason": "<string>",
"referring_provider": "<string>",
"type": "<string>",
"referred_to_location_id": "<string>",
"referred_to_provider_id": "<string>",
"appointment": {
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"patient_id": 123,
"location_id": "<string>",
"provider_id": "<string>",
"appointment_type": "<string>",
"appointment_datetime": "2023-11-07T05:31:56Z"
},
"patient": {
"id": 123,
"mrn": "<string>",
"email": "jsmith@example.com",
"last_name": "<string>",
"first_name": "<string>",
"cell_number": "<string>",
"home_number": "<string>",
"date_of_birth": "2023-12-25"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
List of Referrals
The response is of type object[]
.
Copy
Ask AI
curl --request GET \
--url https://api.clarionhealth.com/v1/workflow/inbound-referral \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
[
{
"id": 123,
"organization_id": 123,
"patient_id": 123,
"workflow_id": 123,
"referral_source": "<string>",
"date_referral_received_by_clinic": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"appointment_id": 123,
"referral_reason": "<string>",
"referring_provider": "<string>",
"type": "<string>",
"referred_to_location_id": "<string>",
"referred_to_provider_id": "<string>",
"appointment": {
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"patient_id": 123,
"location_id": "<string>",
"provider_id": "<string>",
"appointment_type": "<string>",
"appointment_datetime": "2023-11-07T05:31:56Z"
},
"patient": {
"id": 123,
"mrn": "<string>",
"email": "jsmith@example.com",
"last_name": "<string>",
"first_name": "<string>",
"cell_number": "<string>",
"home_number": "<string>",
"date_of_birth": "2023-12-25"
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.