GET
/templatesScope: readOfficial (Meta)List account templates.
Use it to discover name, category, language and status before sending a template message.
Path parameters
No additional parameters.
Query parameters
| Field | Type | Description |
|---|---|---|
statusoptional | draft | pending | approved | rejected | Filters by approval status. |
limitoptional | number | Records per page. Default 50; maximum 200 on most list endpoints. |
offsetoptional | number | Initial page index. Use pagination.next_offset to fetch the next page. |
Body fields
This endpoint does not receive a JSON body.
Ready examples
curl -X GET "https://connect.zyronstack.com/api/v1/templates?status=approved&limit=20&offset=0" \
-H "Authorization: Bearer SUA_CHAVE_API"Responses
| 200 | Templates returned. |
Response example
{
"data": [
{
"id": "b2d0f4a1-3c55-4c7e-9a1b-6f2d8e0a1c34",
"name": "boas_vindas",
"meta_template_name": "boas_vindas",
"category": "MARKETING",
"language": "pt_BR",
"status": "approved",
"variables": ["nome"],
"updated_at": "2026-06-15T12:30:00.000Z"
}
],
"pagination": { "limit": 20, "offset": 0, "total": 8, "next_offset": null }
}