> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sendrealm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Push Templates

> Create localized push templates for broadcasts and automations.

Push templates let you save localized message variants and reuse them in both the dashboard and automation steps.

Push template authoring and lifecycle management are available in the
dashboard. The public API exposes templates for read-only selection and
inspection.

## What a push template stores

* Default locale
* Localized `messages[]`
* Per-locale `title`
* Per-locale `message`
* Optional `launch_url` and `image_url`

## Good uses

* Product announcement broadcasts
* Transactional follow-ups after email or event steps
* Multi-language lifecycle notifications

## Example request

```json theme={null}
{
  "name": "Order Delivered Push",
  "channel": "push",
  "default_locale": "en",
  "messages": [
    {
      "locale": "en",
      "title": "Your order arrived",
      "message": "Tap to see delivery details.",
      "launch_url": "https://app.sendrealm.com/orders/{{order_id}}",
      "image_url": ""
    },
    {
      "locale": "pt-BR",
      "title": "Seu pedido chegou",
      "message": "Toque para ver os detalhes da entrega.",
      "launch_url": "https://app.sendrealm.com/orders/{{order_id}}",
      "image_url": ""
    }
  ]
}
```

## Related pages

* [List Templates API](/api-reference/endpoint/list-templates)
* [Automations](/tutorials/automations)
