Skip to main content
DELETE
/
post
/
tag
/
{identifier}
Delete post tag
curl --request DELETE \
  --url https://api.sendx.io/api/v1/rest/post/tag/{identifier} \
  --header 'X-Team-ApiKey: <api-key>'
{
  "status": "success",
  "message": "Operation completed successfully"
}

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Path Parameters

identifier
string
required

The unique post tag identifier to retrieve.

  • post_tag_leBDiFdrUnRmRz4nfopSrv
Example:

"post_tag_leBDiFdrUnRmRz4nfopSrv"

Response

✅ Tag deleted successfully

status
string
Example:

"success"

message
string
Example:

"Operation completed successfully"

I