DELETE
/
matters
/
{matterId}
/
tags
/
{tagId}
Remove a tag from a matter
curl --request DELETE \
  --url https://api.smokeball.com/matters/{matterId}/tags/{tagId} \
  --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
  }
]'
This response does not have an example.

Authorizations

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

Path Parameters

matterId
string<uuid>
required
tagId
string<uuid>
required

Body

The body is of type object[].

Response

No Content