v1

latestOpenAPI 3.0.12026-07-22231676.5 KB
Add

Add Client Matters

Adds a list of client matters to Harvey. Each client matter includes a name and an optional description.

post/api/v1/client_matters

Request body

Example request

{
  "client_matters": [
    {
      "cm_name": "123-45",
      "cm_desc": "Acme Corp Bankruptcy"
    }
  ]
}

Response

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

success_countinteger

The total amount of client matters that successfully uploaded.

failedstring[]

A list of cm_names that failed to upload. If all uploads were successful, you will receive an empty array.

Example response

{
  "success_count": 1,
  "failed": []
}