Partial update patient
PATCH/v2/patients/:id
Example:
curl --request PATCH
--url https://api.app.zentake.com/v2/patients/\{id\}
--header 'Content-Type: application/json'
--header 'X-API-KEY: <your_api_key>'
--header 'X-API-SECRET: <your_api_secret>'
--data '{
"first_name": "John",
"last_name": "Doe",
"patient_tags": [
{
"name": "VIP",
"color": "#1677ff"
}
],
"custom_fields": {
"allergies": "Updated allergies list"
}
}'
Request
Responses
- 200
- 401
- 403
- 404