List templates
GET /api/v1/partner/email/templatesResponse
{
"success": true,
"templates": [
{
"template_id": "tpl_550e8400-...",
"template_name": "welcome",
"subject": "Welcome to {{company_name}}",
"declared_vars": ["first_name", "company_name"],
"created_at": "2026-05-03T12:00:00Z",
"updated_at": "2026-05-03T12:00:00Z"
}
],
"count": 1
}html + text + react_email_json are NOT included in list
responses to keep the payload small. Use GET /templates/:id
or GET /templates/by-name/:name
to fetch full content.
cURL
curl https://apis.splashifypro.com/api/v1/partner/email/templates \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"