Skip to main content

Delete Tag

DELETE/api/v1/dashboard/content/tags/{tag_id}

Overview

Permanently deletes a tag. Posts that used this tag will have it removed from their tag list. This action cannot be undone.

Authentication

info

Bearer authentication required - Pass your credentials as Authorization: Bearer <client_id>:<api_key>:<api_secret>.

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <client_id>:<api_key>:<api_secret>

Path Parameters

ParameterTypeRequiredDescription
tag_idstring (UUID)YesThe unique identifier of the tag to delete

Response

successboolean

Always true on successful deletion

Example Request

curl -X DELETE "https://spideriq.ai/api/v1/dashboard/content/tags/tag-004-uuid" \
-H "Authorization: Bearer $CLIENT_TOKEN"

Example Response

{
"success": true
}

Status Codes

Status CodeMeaningDescription
200OKTag deleted successfully
401UnauthorizedInvalid or missing Bearer token
404Not FoundTag not found or belongs to another client