cURL
curl --request PATCH \ --url https://api.example.com/api/cases/{id}/approval \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "case_assignee": 123, "case_action": "<string>", "reason_for_escalation": {} } '
Approve a case.
JWT token obtained from AWS Cognito or custom authentication service
A unique integer value identifying this case.
1
Show child attributes
Case approved successfully.