---
title: "List message templates"
method: GET
path: "/v2/message-templates"
tags: ["Message Templates"]
---

# List message templates

`GET /v2/message-templates`

Retrieve a paginated list of message templates linked to a WhatsApp Official channel account. The channel_account_id query parameter is required and must belong to the authenticated owner.

## Query parameters

- `channel_account_id` string, uuid, required
- `limit` integer
- `offset` integer
- `page` integer

## Headers

- `api-token` string, required

## Response `200`

A paginated list of message templates

- object — V2 paginated response with snake_case keys
  - `status` integer — Response status
  - `total_count` integer — Total items based on current filters
  - `page` integer — Current page
  - `total_pages` integer — Total pages based on current filters
  - `has_next` boolean — Indicates that has next page
  - `has_previous` boolean — Indicates that has previous page
  - `data` MessageTemplate[]
    - `id` string, uuid
    - `external_id` string — Template ID on Meta
    - `name` string — Template name
    - `status` 'APPROVED' | 'PENDING' | 'REJECTED' — Template approval status
    - `language` string — Language code
    - `category` 'MARKETING' | 'UTILITY' | 'AUTHENTICATION' — Template category
    - `components` object[] — Template components (HEADER, BODY, FOOTER, BUTTONS)
      - `type` 'HEADER' | 'BODY' | 'FOOTER' | 'BUTTONS'
      - `text` string
      - `format` string
    - `variables` object, nullable — Variable mapping by component

## Other responses

- `400` — Missing or invalid channel_account_id
- `401` — Authentication error - invalid or missing api-token
- `404` — Channel account not found

---

[API](https://skmtc.net/clint/apis/clint-api.md) · [All operations](https://skmtc.net/clint/apis/clint-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clint/clint-api/versions/12b8f9eff943/schema)
