PATCH
/
public
/
v1
/
patient-plans
/
{patient_plan_id}
curl --request PATCH \
  --url https://api.silnahealth.com/public/v1/patient-plans/{patient_plan_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "source_id": null
}'
This response does not have an example.

Since Patient Plans are immutable (except for source_id), this API should only be used for updating your source_ids in our system

Authorizations

Authorization
string
header
required

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

Path Parameters

patient_plan_id
string
required

Body

application/json
Request schema for updating a patient plan

Request schema for updating a patient plan

source_id
string | null

Unique identifier for the patient plan. This is (optionally) generated and supplied by API clients

Response

204

OK