Skip to main content
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

{
  "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": ""
    }
  ]
}