> 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/create-template-utility.md).

# Create template Utility

```http
POST /template/
Authorization: Bearer <cartat_api_token>
Content-Type: application/json
```

Use `UTILITY` for transactional templates such as order updates, account alerts, invoices, and delivery notifications.

### Example

```json
{
  "name": "invoice_ready",
  "category": "UTILITY",
  "language": "en_US",
  "components": [
    {
      "type": "BODY",
      "text": "Hi {{customer_name}}, your invoice {{invoice_number}} is ready.",
      "example": {
        "body_text_named_params": [
          {
            "param_name": "customer_name",
            "example": "John"
          },
          {
            "param_name": "invoice_number",
            "example": "INV-1001"
          }
        ]
      }
    },
    {
      "type": "FOOTER",
      "text": "Cartat"
    }
  ]
}
```

### Response

```json
{
  "id": "template_id",
  "status": "PENDING"
}
```
