Skip to main content
DELETE
/
api
/
v1
/
tags
/
{tagId}
Delete Tag
curl --request DELETE \
  --url https://api.sequenzy.com/api/v1/tags/{tagId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}
Delete a tag definition and remove the tag from all subscribers that have it. Tags that are referenced by sequence steps (add tag, remove tag, tag triggers, conditions, or branches) cannot be deleted until those steps are removed. System tags cannot be deleted.

Request

tagId
string
required
Tag definition ID.
curl -X DELETE "https://api.sequenzy.com/api/v1/tags/tag_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true
}