POST
/
cases
/
_bulk
/
delete
curl --request POST \
  --url https://local.casebender.com:3000/api/cases/_bulk/delete \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "ids": [
    "<string>"
  ],
  "options": {
    "selectAll": true,
    "filters": {
      "statusValue": [
        "<string>"
      ],
      "severity": [
        123
      ],
      "assigneeId": [
        "<string>"
      ],
      "searchKey": "<string>",
      "searchValue": "<string>"
    }
  }
}'
{
  "count": 123
}

Authorizations

X-Api-Key
string
header
required

Body

application/json

Response

200
application/json

Successful response

The response is of type object.