List email templates
curl --request GET \
--url https://api.sequenzy.com/api/v1/templates \
--header 'Authorization: Bearer <token>'{
"success": true,
"companyId": "company_abc123",
"emailLocalizationConfig": {
"enabled": false,
"locales": []
},
"templates": [
{
"id": "email_abc123",
"name": "[Template] Welcome",
"subject": "Welcome!",
"previewText": null,
"labels": ["edm"],
"createdAt": "2026-05-01T10:30:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"localizations": []
}
]
}
List saved email templates for the authenticated company. You can filter by label.Documentation Index
Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
Use this file to discover all available pages before exploring further.
curl "https://api.sequenzy.com/api/v1/templates?label=edm" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"companyId": "company_abc123",
"emailLocalizationConfig": {
"enabled": false,
"locales": []
},
"templates": [
{
"id": "email_abc123",
"name": "[Template] Welcome",
"subject": "Welcome!",
"previewText": null,
"labels": ["edm"],
"createdAt": "2026-05-01T10:30:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"localizations": []
}
]
}
curl --request GET \
--url https://api.sequenzy.com/api/v1/templates \
--header 'Authorization: Bearer <token>'{
"success": true,
"companyId": "company_abc123",
"emailLocalizationConfig": {
"enabled": false,
"locales": []
},
"templates": [
{
"id": "email_abc123",
"name": "[Template] Welcome",
"subject": "Welcome!",
"previewText": null,
"labels": ["edm"],
"createdAt": "2026-05-01T10:30:00Z",
"updatedAt": "2026-05-01T10:30:00Z",
"localizations": []
}
]
}