Skip to main content
DELETE
/
post
/
category
/
{identifier}
Delete post category
curl --request DELETE \
  --url https://api.sendx.io/api/v1/rest/post/category/{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 category identifier to retrieve.

  • post_category_YzS1wOU20yw87UUHKxMzwn
Example:

"post_category_YzS1wOU20yw87UUHKxMzwn"

Response

✅ Category deleted successfully

status
string
Example:

"success"

message
string
Example:

"Operation completed successfully"

I