Create Patient
Patient Creation Walkthrough
- Get the provider that you want to create a patient for through the Get Providers API.
- Get the service location where the patient receives services through the Get Service Locations API.
- Use this endpoint to create a patient with the provider and service location information. We recommend including the EHR ID if you have one available as this will help identify the patient as it is represented in your system.
Creation with Place Of Service and Diagnosis Codes
After you create a patient, you can add place of service codes and diagnosis codes by using our Place Of Service and Diagnosis APIs. For Place Of Service, you would do the following:
- Get the Place Of Services configured for your provider service location by making a request through the Get Provider Places of Service API .
- With the returned place of services, you can then make a POST request to Create Patient Place of Service API with the patient_id of the patient you just created and a
provider_place_of_service_id
that you got from the Get Service Locations API.
To add a diagnosis to a patient, you would make a POST request to the Create Patient Diagnosis API with the patient_id and a diagnosis code. Please refer to here for a list of ICD-10 diagnosis codes that you can use.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Patient Create Request Schema
Patient's first name
Patient's last name
Patient's date of birth
Patient's specialties. A patient can have multiple
PHYSICAL_THERAPY
, ABA_THERAPY
, SPEECH_THERAPY
, OCCUPATIONAL_THERAPY
, PSYCHOLOGICAL_TESTING
, HOME_HEALTH_CARE
, HOSPICE
, CARDIAC_REHABILITATION
, INTENSIVE_CARDIAC_REHABILITATION
, MENTAL_HEALTH
Patient's status
INTAKE
, ACTIVE
, DISCHARGED
, ON_HOLD
Provider Service Location ID (where the patient receives service)
Patient's EHR ID (or other unique identifier) that you have in your system
Patient's street address
255
Patient's apartment, suite, unit, etc.
255
Patient's city
255
Patient's state
255
Patient's zip code
Response
Patient Create Response Schema