Skip to main content
GET
/
tag
/
{identifier}
Get tag by ID
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/tag/{identifier} \
  --header 'X-Team-ApiKey: <api-key>'
{
  "id": "tag_abc123def456ghi789",
  "name": "VIP Customer",
  "created": "2024-01-20T10:30:00Z",
  "updated": "2024-01-20T10:30:00Z"
}

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

Tag identifier to retrieve

Response

✅ Tag retrieved successfully

id
string

Unique tag identifier with tag_ prefix

Example:

"tag_abc123def456ghi789"

name
string

Tag name

Example:

"VIP Customer"

created
string<date-time>

Tag creation timestamp

Example:

"2024-01-20T10:30:00Z"

updated
string<date-time>

Tag last update timestamp

Example:

"2024-01-20T10:30:00Z"

I