API Documentation
Payors
- GETGet Payor
- GETGet Payors
- GETGet Provider Payors
- Payor Inference
Providers
- GETGet Provider
- GETGet Providers
- Service Locations
- Places of Service
Patients
- DELDelete Patient
- GETGet Patient
- PATCHUpdate Patient
- POSTCreate Patient
- GETGet Patients
- PUTCreate or Update Patient
- Places of Service
- Plans
- Diagnoses
Benefit Checks
Prior Authorizations
Patients
Update Patient
PATCH
/
public
/
v1
/
patients
/
{patient_id}
Copy
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
}'
Copy
This response does not have an example.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Patient Update Request Schema
Patient Update Request Schema
Response
204
OK
Copy
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
}'
Copy
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.