GET
/
public
/
v1
/
patients
/
{patient_id}
curl --request GET \
  --url https://api.silnahealth.com/public/v1/patients/{patient_id} \
  --header 'Authorization: Bearer <token>'
{
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "2023-12-25",
  "source_id": null,
  "address_line_1": null,
  "address_line_2": null,
  "city": null,
  "state": null,
  "zip_code": null,
  "patient_specialties": [
    "PHYSICAL_THERAPY"
  ],
  "status": "INTAKE",
  "provider_service_location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "patient_code": "<string>",
  "patient_diagnosis_ids": null,
  "patient_place_of_service_ids": null
}

Authorizations

Authorization
string
header
required

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

Path Parameters

patient_id
string
required

Response

200
application/json
Patient Response Schema

Patient Response Schema

first_name
string
required

Patient's first name

last_name
string
required

Patient's last name

date_of_birth
string
required

Patient's date of birth

patient_specialties
enum<string>[]
required

Patient's specialties. A patient can have multiple

Available options:
PHYSICAL_THERAPY,
ABA_THERAPY,
SPEECH_THERAPY,
OCCUPATIONAL_THERAPY,
PSYCHOLOGICAL_TESTING,
HOME_HEALTH_CARE,
HOSPICE,
CARDIAC_REHABILITATION,
INTENSIVE_CARDIAC_REHABILITATION,
MENTAL_HEALTH
status
enum<string>
required

Patient's status

Available options:
INTAKE,
ACTIVE,
DISCHARGED,
ON_HOLD
provider_service_location_id
string
required

Provider Service Location ID (where the patient receives service)

id
string
required
patient_code
string
required

Patient's code. This is auto-generated by the system

source_id
string | null

Patient's EHR ID (or other unique identifier) that you have in your system

address_line_1
string | null

Patient's street address

Maximum length: 255
address_line_2
string | null

Patient's apartment, suite, unit, etc.

Maximum length: 255
city
string | null

Patient's city

Maximum length: 255
state
string | null

Patient's state

Maximum length: 255
zip_code
string | null

Patient's zip code

patient_diagnosis_ids
string[] | null
patient_place_of_service_ids
string[] | null