DELETE
/
contacts
/
{id}
/
tags
/
{tagId}
Remove custom tag(s) from a contact
curl --request DELETE \
  --url https://api.smokeball.com/contacts/{id}/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
  }
]'
{
  "id": "<string>",
  "href": "<string>",
  "relation": "<string>",
  "method": "GET"
}

Authorizations

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

Path Parameters

id
string<uuid>
required

The contact ID

tagId
string<uuid>
required

The tag ID (optional for bulk delete)

Body

The list of tags for bulk delete

The body is of type object[].

Response

When request is accepted.

The response is of type object.