For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Templates

Retrieves all WhatsApp message templates available for the team's WhatsApp Business account.

List templates

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

List of templates

application/json
linksobjectOptional
metaobjectOptional
get/templates
GET /api/v1/templates HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

List of templates

{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "wa_id": "text",
      "name": "text",
      "status": "approved",
      "category": "text",
      "rejection_reason": "text"
    }
  ],
  "links": {},
  "meta": {}
}

Last updated