PUT
/
matters
/
{matterId}
/
memos
/
{id}
curl --request PUT \
  --url https://api.smokeball.com/matters/{matterId}/memos/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "title": "Update",
  "text": "There has been a recent update on this matter.",
  "userId": "b471682e-fa17-4e46-b7fe-9b2b8fdcb3c2",
  "createdDateUtc": "2022-07-01"
}'
{
  "id": "<string>",
  "href": "<string>",
  "relation": "<string>",
  "method": "GET"
}

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Path Parameters

matterId
string
required
id
string
required

Body

Response

202
application/json

When request is successful. The memo has been accepted and will be updated shortly.

The response is of type object.