https://gateway-api.thequickassists.co/v1/templatesRetrieve a list of all WhatsApp templates associated with your chatbot. Returns template details including status, content, and metadata.
X-API-Key| Parameter | Required | Type | Description |
|---|---|---|---|
status | No | string | Filter by status, for example approved. |
search | No | string | Search by template name or language. |
page | No | number | Page number. Default is 1. |
limit | No | number | Items per page. Default is 10, maximum is 100. |
{
"success": true,
"message": "Templates fetched successfully",
"requestId": "7cf0743f-f852-4268-b5db-a2617dbd75b4",
"data": {
"items": [
{
"_id": "661fb4d4bc6f62c4ef12a001",
"chatBotId": "661fb310bc6f62c4ef128888",
"metaTemplateName": "order_update",
"language": "en_US",
"category": "utility",
"metaPayload": {},
"status": "approved",
"version": 1,
"createdAt": "2026-04-16T06:15:00.000Z",
"updatedAt": "2026-04-16T06:15:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"totalPages": 1
}
}
}