PATCH
/
public
/
v1
/
patients
/
{patient_id}
curl --request PATCH \
  --url https://api.silnahealth.com/public/v1/patients/{patient_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "first_name": null,
  "last_name": null,
  "date_of_birth": null,
  "source_id": null,
  "address_line_1": null,
  "address_line_2": null,
  "city": null,
  "state": null,
  "zip_code": null,
  "patient_specialties": null,
  "status": null,
  "provider_service_location_id": null
}'
This response does not have an example.

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

Body

application/json
Patient Update Request Schema

Patient Update Request Schema

first_name
string | null
last_name
string | null
date_of_birth
string | null
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_specialties
enum<string>[] | null
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>
Available options:
INTAKE,
ACTIVE,
DISCHARGED,
ON_HOLD
provider_service_location_id
string | null

Response

204

OK