Tags
Delete a tag
Permanently delete a tag by its ID. The tag is removed from all contacts it was assigned to.
DELETE /v1/tags/{tagId}
Parameters
Path parameters
tagId
string (uuid) required
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
Example
{
"error": false
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/tags/00000000-0000-0000-0000-000000000000 \
--request DELETE \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/tags/00000000-0000-0000-0000-000000000000', {
method: 'DELETE',
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.delete(
"https://api.prod.getdex.com/v1/tags/00000000-0000-0000-0000-000000000000",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)

