DELETE
/
matters
/
{matterId}
/
tags
/
{tagId}
Remove tags 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": "Staff"
  }
]'
{
  "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
tagId
string<uuid>
required

Body

id
string | null

Id of the tag.

name
string | null

Display name of the tag.

color
string | null

Color of the tag.

type
string

Type of the tag.

Example:

"Staff"

Response

When request is accepted. Returns a 'Link' object.

id
string | null
href
string | null
relation
string | null
method
string | null
default:GET