Skip to main content
PATCH
/
api
/
cases
/
bulk_assign
Bulk assign cases
curl --request PATCH \
  --url https://api.example.com/api/cases/bulk_assign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "case_list": [
    123
  ],
  "assignee": 123
}
'
"<string>"

Authorizations

Authorization
string
header
required

JWT token obtained from AWS Cognito or custom authentication service

Body

application/json
case_list
integer[]
required

List of case IDs.

assignee
integer
required

Assignee user ID.

Response

Cases assigned successfully.

Success message