Skip to main content
GET
/
api
/
v1
/
transactional
{
  "success": true,
  "transactional": [
    {
      "id": "txn_abc123",
      "name": "Welcome Email",
      "slug": "welcome",
      "enabled": true,
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T10:30:00Z"
    },
    {
      "id": "txn_def456",
      "name": "Password Reset",
      "slug": "password-reset",
      "enabled": true,
      "createdAt": "2024-01-14T08:00:00Z",
      "updatedAt": "2024-01-14T08:00:00Z"
    }
  ]
}
List all transactional email templates for your company.
curl "https://api.sequenzy.com/api/v1/transactional" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "transactional": [
    {
      "id": "txn_abc123",
      "name": "Welcome Email",
      "slug": "welcome",
      "enabled": true,
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T10:30:00Z"
    },
    {
      "id": "txn_def456",
      "name": "Password Reset",
      "slug": "password-reset",
      "enabled": true,
      "createdAt": "2024-01-14T08:00:00Z",
      "updatedAt": "2024-01-14T08:00:00Z"
    }
  ]
}