Skip to main content
GET
/
post
/
tag
/
{identifier}
Get post tag by ID
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/post/tag/{identifier} \
  --header 'X-Team-ApiKey: <api-key>'
{
  "id": "post_tag_leBDiFdrUnRmRz4nfopSrv",
  "name": "Summer Sale",
  "created": "2023-11-07T05:31:56Z",
  "updated": "2023-11-07T05:31:56Z"
}

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 retrieved successfully

id
string
Example:

"post_tag_leBDiFdrUnRmRz4nfopSrv"

name
string

Tag name

Example:

"Summer Sale"

created
string<date-time>

Date and time when tag was created

updated
string<date-time>

Date and time when tag was updated

I