Skip to main content
DELETE
/
v1
/
organizations
/
{organizationId}
/
projects
/
{projectId}
/
tags
/
{id}
Delete Tag
curl --request DELETE \
  --url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/tags/{id}

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID
id
string
required
Tag ID

Response

{
  "message": "Tag successfully deleted",
  "id": "tag123"
}
Deleting a tag removes it from all resources (components, content, assets) that reference it. The resources themselves are not affected.

Error Responses

Tag Not Found

{
  "error": {
    "code": "NOT_FOUND",
    "message": "Tag not found"
  }
}

Code Examples

curl -X DELETE "https://api.metabind.ai/v1/organizations/org123/projects/proj456/tags/tag123" \
  -H "Authorization: Bearer YOUR_API_KEY"