GET
/
workflow
/
inbound-referral
curl --request GET \
  --url https://api.clarionhealth.com/v1/workflow/inbound-referral \
  --header 'Authorization: Bearer <token>'
[
  {
    "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

Authorization
string
header
required

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

Response

200
application/json
List of Referrals
id
integer
organization_id
integer
patient_id
integer
workflow_id
integer
referral_source
string
date_referral_received_by_clinic
string | null
created_at
string
appointment_id
integer | null
referral_reason
string
referring_provider
string
type
string
referred_to_location_id
string
referred_to_provider_id
string
appointment
object | null
patient
object