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

Response

204

OK