v1
latestOpenAPI 3.0.12026-07-22231676.5 KBDelete
Delete Client Matters
Deletes a list of client matters from Harvey, preventing them from being associated with any future queries. If a client matter does not exist or is already deleted, it will be skipped.
Deleting a Client Matter does not delete historical queries associated with that Client Matter, nor does it remove the Client Matter from those historical queries. Users and Admins can update the Client Matter associated with a previous query in the Dashboard.
delete/api/v1/client_matters
Request body
Example request
{
"client_matters": [
"123-45",
"456-78"
]
}Response
The number of successfully deleted client matters and the number of failures.
Example response
{
"success_count": 1,
"failed": []
}