Delete Tag
/tags/:id
Delete a tag. This will also remove the tag from all leads it was assigned to (cascades through the lead_tags junction table).
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string (uuid) | The tag ID to delete |
Example
curl -X DELETE https://api.getnexor.ai/api/public/tags/123e4567-e89b-12d3-a456-426614174001 \
-H "X-API-Key: nxr_live_your_api_key"
Responses
200 — Tag deleted successfully
{
"success": true
}
401 — Authentication error
See Authentication.
404 — Tag not found
Tag does not exist or does not belong to your account.