Getting started

Module

Templates

Local template catalog, synced with Meta's approval status.

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
FieldTypeDescription
statusoptionaldraft | pending | approved | rejectedFilters by approval status.
limitoptionalnumberRecords per page. Default 50; maximum 200 on most list endpoints.
offsetoptionalnumberInitial 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

200Templates 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 }
}