curl --request DELETE \
--url https://api.example.com/app/v1/organizations/{organizationId}/projects/{projectId}/tags/{tagId}Delete a tag
curl --request DELETE \
--url https://api.example.com/app/v1/organizations/{organizationId}/projects/{projectId}/tags/{tagId}{
"message": "Tag successfully deleted",
"id": "tag123"
}
{
"error": {
"code": "NOT_FOUND",
"message": "Tag not found"
}
}
{
"error": {
"code": "TAG_IN_USE",
"message": "Cannot delete tag that is in use by resources"
}
}
curl -X DELETE "https://api.metabind.ai/app/v1/organizations/org123/projects/proj456/tags/tag123" \
-H "Authorization: Bearer YOUR_JWT"