POST
/
api
/
v1
/
client_matters
curl --request POST \
  --url https://api.harvey.ai/api/v1/client_matters \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "client_matters": [
    {
      "cm_name": "123-45",
      "cm_desc": "Acme Corp Bankruptcy",
      "cm_allowed": "true"
    }
  ]
}'
{
  "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 added client matters and the number of failures.

The response is of type object.