DELETE
/
contacts
/
{id}
/
tags
/
{tagId}
Remove tags 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 '[
  "<string>"
]'
{
  "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 string[].

Response

When request is accepted. Returns a hypermedia 'Link' object of the contact tags.

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