DELETE /v1/patients/\{patient_id\}/protocols/\{protocol_id\}/overrides/\{override_id\}
Service: patient-graph · operationId: (none)
Required scopes
(no scope declared — review service config)
Path parameters
patient_id(string) required —protocol_id(string) required —override_id(string) required —
Responses
200 Override expired
{
"type": "object",
"properties": {
"removed": {
"type": "boolean",
"enum": [
true
]
}
},
"required": [
"removed"
]
}401 Unauthorized
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}404 Override not found
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X DELETE https://patient-graph.platform.loop.health/v1/patients/{patient_id}/protocols/{protocol_id}/overrides/{override_id} \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/patient-graph— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced