> For the complete documentation index, see [llms.txt](https://docs.cartat.net/cartat-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cartat.net/cartat-api/whatsapp-official-api/templates/template-status.md).

# Template status

```http
GET /template/{template}/status
Authorization: Bearer <cartat_api_token>
Accept: application/json
```

Use this endpoint to check the approval status of a submitted template.

### Path parameters

| Parameter  | Type   | Required | Description    |
| ---------- | ------ | -------: | -------------- |
| `template` | string |      Yes | Template name. |

### Example request

```http
GET /template/invoice_ready/status
Authorization: Bearer <cartat_api_token>
Accept: application/json
```

### Response

```json
{
  "name": "invoice_ready",
  "status": "APPROVED",
  "category": "UTILITY"
}
```
