POST
/
workflow
/
inbound-referral
curl --request POST \
  --url https://api.clarionhealth.com/v1/workflow/inbound-referral \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "documentUrl": "<string>",
  "referringProviderFirstName": "<string>",
  "referringProviderLastName": "<string>",
  "referralReason": "<string>",
  "referralType": "sleep",
  "referredToLocationId": "2",
  "referredToProviderId": "77562",
  "patientData": {
    "mrn": "<string>",
    "sex": "male",
    "firstName": "<string>",
    "lastName": "<string>",
    "dob": "<string>",
    "cellNumber": "<string>",
    "homeNumber": "<string>",
    "email": "<string>",
    "insuranceName": "<string>",
    "insuranceSubscriberName": "<string>",
    "insuranceSequence": "primary",
    "address": {
      "street": "<string>",
      "city": "<string>",
      "state": "AL",
      "zipcode": "<string>"
    }
  }
}'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
referralType
enum<string>
required
Available options:
sleep,
pulmonology
referredToLocationId
enum<string>
required
Available options:
2
patientData
object
required
documentUrl
string
referringProviderFirstName
string | null
referringProviderLastName
string | null
referralReason
string | null
referredToProviderId
enum<string>
Available options:
77562,
74570,
75929

Response

201
application/json
Inbound referral created successfully

The response is of type object.