curl --request DELETE \
--url https://api.example.com/v1/cases/{case_id}/persons/{person_id} \
--header 'Authorization: Bearer <token>'{
"error": {
"code": "not_found",
"message": "The requested resource was not found."
}
}Remove a person from a case.
curl --request DELETE \
--url https://api.example.com/v1/cases/{case_id}/persons/{person_id} \
--header 'Authorization: Bearer <token>'{
"error": {
"code": "not_found",
"message": "The requested resource was not found."
}
}