API Reference

Create Flows Template

Create a template that opens a WhatsApp Flow. This allows for rich, interactive experiences within the chat.

Example Request Body

{
  "name": "example_template_name",
  "language": "en_US",
  "category": "MARKETING",
  "components": [
    {
      "type": "body",
      "text": "This is a flows as template demo"
    },
    {
      "type": "BUTTONS",
      "buttons": [
        {
          "type": "FLOW",
          "text": "Open flow!",
          "flow_id": "<flow-id>",
          "navigate_screen": "Flows Json screen name",
          "flow_action": "navigate"
        }
      ]
    }
  ]
}
Language
Click Try It! to start a request and see the response here!