DELETE
/
api
/
v1
/
client_matters
curl --request DELETE \
  --url https://api.harvey.ai/api/v1/client_matters \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "client_matters": [
    "123-45",
    "456-78"
  ]
}'
{
  "success_count": 1,
  "failed": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

The number of successfully deleted client matters and the number of failures.

The response is of type object.