Skip to main content
GET
/
api
/
v1
/
transactional
/
{slug}
{
  "success": true,
  "transactional": {
    "id": "txn_abc123",
    "name": "Welcome Email",
    "slug": "welcome",
    "enabled": true,
    "variables": ["NAME", "COMPANY_NAME", "LOGIN_URL"],
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:30:00Z"
  }
}
Get details of a transactional email template including available template variables.

Path Parameters

slug
string
required
Transactional email slug
curl "https://api.sequenzy.com/api/v1/transactional/welcome" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "transactional": {
    "id": "txn_abc123",
    "name": "Welcome Email",
    "slug": "welcome",
    "enabled": true,
    "variables": ["NAME", "COMPANY_NAME", "LOGIN_URL"],
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:30:00Z"
  }
}
The variables array shows template variables extracted from the email content. Use these when sending to customize the email.