POST
/
matters
/
{matterId}
/
tags
Add custom tag(s) to a matter
curl --request POST \
  --url https://api.smokeball.com/matters/{matterId}/tags \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '[
  {
    "id": "<string>",
    "name": "<string>",
    "color": "<string>",
    "type": 0
  }
]'
{
  "id": "<string>",
  "href": "<string>",
  "relation": "<string>",
  "method": "GET"
}

Authorizations

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

Path Parameters

matterId
string<uuid>
required

Body

The body is of type object[].

Response

When request is successful.

The response is of type object.