Daniel Amorós
  • Inicio
  • Sobre Daniel
  • Contacto

Archivos

  • marzo 2025
  • febrero 2025
  • enero 2025
  • octubre 2024
  • septiembre 2024
  • agosto 2024
  • febrero 2024
  • enero 2024

Categorías

  • Analytica Digital
  • API
  • Bing
  • Blog
  • eCommerce
  • Emprendimiento
  • Facebook Meta
  • Google
  • Herramientas
  • make.com
  • Marketing
  • Marketing Digital
  • SEO
  • Tips de adulto
Daniel Amorós Daniel Amorós
  • Inicio
  • Sobre Daniel
  • Contacto
  • API
  • Blog
  • Herramientas
  • make.com

Solved error RuntimeError [400] [131008] in make.com for WhatsApp Flow

  • Daniel Amorós
  • 24 de agosto de 2024
  • Sin Comentarios
  • 910 views
  • 4 minuto leer
Total
0
Shares
0
0
0

Before diving into the details on how to resolve the RuntimeError [400] [131008] in make.com, it is essential to understand what WhatsApp Flow and make.com are, and how they integrate for message automation.

Tabla de contenidos

Toggle
  • What is WhatsApp Flow?
  • How to Solve the RuntimeError [400] [131008]?
    • Preparation: Prerequisites
    • Configuration in make.com
      • Step 1: Scenario Setup
      • Step 2: Create a «HTTP Make a Request» Module
      • Step 3: Configure the Request Content Body
      • Step 4: Example of Correct Configuration
      • Step 5: Testing and Verification
      • Step 6: Execute the Test
  • Conclusion: Optimize Your WhatsApp Flow Integration in make.com

What is WhatsApp Flow?

WhatsApp Flow allows you to automate the sending of forms such as surveys via WhatsApp using the WhatsApp Business API. This tool is ideal for businesses that want to enhance their communication with customers in an automated way without leaving WhatsApp. If you want to learn more about how WhatsApp Flow works, I offer a free kit to test the WhatsApp API, available at this link: WhatsApp API Test Kit.

make.com is an automation platform that integrates with multiple services, including the WhatsApp API, to automate tasks like message sending. Although it is a powerful tool, it currently does not natively support the sending of WhatsApp Flows, which can result in errors such as:

(#131008) Required parameter is missing
Please specify a flow button component within template['components']

when trying to send a WhatsApp API template from make.com.

How to Solve the RuntimeError [400] [131008]?

The RuntimeError [400] [131008] in make.com occurs due to the lack of native support for sending WhatsApp Flows. Below, I will show you how I solved this issue in my project by manually integrating the WhatsApp Business API into make.com.

To solve this problem, we will not use the native WhatsApp Business API integration in make.com. Instead, we will manually configure it by following these steps:

Preparation: Prerequisites

Before starting the configuration, make sure you have the following:

  1. Permanent or Temporary Token for WhatsApp Business API: You will need this token to authenticate your requests. You can obtain it by following these steps:
    • Visit Facebook Developers.
    • Select your application.
    • Go to the API settings to find your access token.
  2. Sender ID (Phone Number ID): This is the ID of your WhatsApp Business phone number.
  1. WhatsApp Flow Template: You need to have a WhatsApp message template created. To do this:
    • Access Facebook Business Manager.
    • Create your template according to your flow requirements. If you want to know how to create a WhatsApp Flow, you can follow this tutorial.

Configuration in make.com

Step 1: Scenario Setup

In make.com, create or select an existing scenario. In my case, I already had a scenario configured with a Webhook that receives a JSON and sends the information to Google Spreadsheets as shown in the following image. I will use this setup as the basis for testing.

Step 2: Create a «HTTP Make a Request» Module

  1. Inside the scenario, create a new module of type «HTTP Make a Request».

2. Fill in the fields as follows:

  • URL: Enter https://graph.facebook.com/v20.0/{{Sender_ID}}/messages, where {{Sender_ID}} is your WhatsApp number ID.
  • Method: Select POST.
  • Headers: Click on «Add a header» and add:
    • Name: Authorization
    • Value: Bearer {Your_Token} (Replace {Your_Token} with your WhatsApp API token, either temporary or permanent).
  1. In Body Type, select RAW.
  2. Content Type: Set it to JSON (application/json).
  3. Do not close anything yet, as we will explain the next step.

Step 3: Configure the Request Content Body

Now comes a crucial part. In “Request content”, enter the following JSON. Note that this is an example; you need to fill it with your data:

{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "{{Numero_Whatsapp_destino}}", // Recipient's phone number in E.164 format (e.g., 525555555555)
  "type": "template",
  "template": {
    "name": "{{Nombre_template}}", // Name of your WhatsApp Business template
    "language": {
      "code": "{{Codigo_idioma_pais}}" // Language code of the template, e.g., "es_MX"
    },
    "components": [
      {
        "type": "button",
        "sub_type": "flow",
        "index": "0",
        "parameters": [
          {
            "type": "action",
            "action": {
              "flow_token": "unused",
              "flow_action_data": {
                "flow_id": "{{ID_Del_Template_Whatsapp}}", // ID of the WhatsApp form
                "flow_action": "NAVIGATE",
                "navigate_screen": "SURVEY"
              }
            }
          }
        ]
      }
    ]
  }
}
  • {{Numero_Whatsapp_destino}}: Must be in E.164 format (e.g., 525555555555).
  • {{Nombre_template}}: The name of the template you created in WhatsApp Business.
  • {{Codigo_idioma_pais}}: Language code for the template, like «es_MX».
  • {{ID_Del_Template_Whatsapp}}: Find this ID in Facebook Business Manager.


Do not close or save anything yet; let’s proceed to the next step.

Step 4: Example of Correct Configuration

Below is an example of what a correctly configured Request content should look like:

{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "525555555555",
  "type": "template",
  "template": {
    "name": "encuesta_loyal_cliente_rating",
    "language": {
      "code": "es_MX"
    },
    "components": [
      {
        "type": "button",
        "sub_type": "flow",
        "index": "0",
        "parameters": [
          {
            "type": "action",
            "action": {
              "flow_token": "unused",
              "flow_action_data": {
                "flow_id": "130698640948414",
                "flow_action": "NAVIGATE",
                "navigate_screen": "SURVEY"
              }
            }
          }
        ]
      }
    ]
  }
}

Step 5: Testing and Verification

Once you have configured everything, it is time to run a test to ensure that the WhatsApp Flow sends correctly without any issues. But before anything else, don’t forget to click OK and save your scenario.

Step 6: Execute the Test

Run a test to check that the flow works correctly. Here’s an example of how it should look:

Conclusion: Optimize Your WhatsApp Flow Integration in make.com

By following this step-by-step guide, you should be able to resolve the RuntimeError [400] [131008] and successfully integrate WhatsApp Flows in make.com without any problems. Remember, the key lies in the manual configuration of the WhatsApp API.

Buy Me a Coffee!

I hope this tutorial was helpful in effectively integrating and sending WhatsApp Flows in make.com. If it helped clear up your doubts or made your job easier, consider buying me a coffee! Your support helps me continue to create quality content. If you want to learn more about marketing, subscribe.

Buy me a coffee ☕ via PayPal

Post Views: 910
Total
0
Shares
Share 0
Tweet 0
Pin it 0
Temas relacionados
  • components
  • error
  • error [131008]
  • Herramientas
  • make.com
  • solution
  • solved
  • Tips
  • Whatsapp Flow
  • Whatsapp flujos
Daniel Amorós

Soy Daniel Amorós, ingeniero en Sistemas Computacionales. Me considero un emprendedor y un "marketero de clóset", con más de ocho años de experiencia en el desarrollo de software y en marketing digital. Soy un excelente nexo ideal entre estos dos ámbitos, pues no solo los entiendo y optimizo a la perfección, sino que también logro integrarlos de manera eficaz. Ayudo a empresas, emprendedores y agencias que buscan orientación en el ámbito digital. Me especializo en desarrollo FrontEnd, SEO y diseño de experiencia de usuario e interfaz (UX/UI). Lo que más me gusta en esta vida es hacer magia, no aparezco dinero, pero si una sonrisa al parecer tu carta.

Artículo anterior
  • API
  • Blog
  • Herramientas
  • make.com

Solución al Error RuntimeError [400] [131008] en make.com para WhatsApp Flow

  • Daniel Amorós
  • 24 de agosto de 2024
Ver Publicación
Siguiente artículo
  • Analytica Digital
  • eCommerce
  • Herramientas

¿Qué es un Píxel en Marketing? Descubre sus Beneficios

  • Daniel Amorós
  • 22 de septiembre de 2024
Ver Publicación
También podría interesarte
Etiquetas seo importantes para tu web
Ver Publicación
  • SEO
  • Blog
  • Google
  • Marketing Digital

Etiquetas SEO: Las Más Importantes para Optimizar tu Web

  • Daniel Amorós
  • 9 de marzo de 2025
Meta Pixel Facebook
Ver Publicación
  • eCommerce
  • Analytica Digital
  • API
  • Emprendimiento
  • Facebook Meta
  • Marketing Digital

Meta Pixel: Qué es y cómo funciona

  • Daniel Amorós
  • 23 de febrero de 2025
que es el seo y porque es importante
Ver Publicación
  • Marketing
  • Analytica Digital
  • API
  • Bing
  • Blog
  • eCommerce
  • Herramientas
  • Marketing Digital

¿Qué es el SEO y por qué es importante? Guía completa

  • Daniel Amorós
  • 16 de febrero de 2025
customer journey
Ver Publicación
  • Blog
  • eCommerce
  • Emprendimiento
  • Marketing

Qué es el Customer Journey y Cómo Optimizarlo para tu Negocio

  • Daniel Amorós
  • 9 de febrero de 2025
Embudo de Ventas Qué Es, Cómo Funciona y Por Qué es Clave para Vender
Ver Publicación
  • Analytica Digital
  • eCommerce
  • Emprendimiento
  • Herramientas
  • Marketing
  • Marketing Digital

Embudo de Ventas: Qué es, cómo funciona y por qué es Clave

  • Daniel Amorós
  • 2 de febrero de 2025
Ver Publicación
  • eCommerce
  • Emprendimiento
  • Herramientas

Remarketing: Qué es, Cómo Funciona y Mejores Estrategias

  • Daniel Amorós
  • 26 de enero de 2025
Ver Publicación
  • Analytica Digital
  • Bing
  • eCommerce
  • Emprendimiento
  • Herramientas

Bing Web Master Tool: Qué es y todo lo que necesitas saber

  • Daniel Amorós
  • 20 de octubre de 2024
Ver Publicación
  • Analytica Digital
  • Google
  • Herramientas

Google Analytics 4 y Google Search Console: Cómo Conectarlos y Maximizar su Potencial

  • Daniel Amorós
  • 13 de octubre de 2024

Deja una respuesta Cancelar la respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Entradas recientes

  • Etiquetas SEO: Las Más Importantes para Optimizar tu Web
  • Buyer Persona: Qué es, para qué sirve y cómo definir el tuyo
  • Meta Pixel: Qué es y cómo funciona
  • ¿Qué es el SEO y por qué es importante? Guía completa
  • Qué es el Customer Journey y Cómo Optimizarlo para tu Negocio

Comentarios recientes

  1. Estrategias Maestras de Marketing para eCommerce - Blog de Envíosperros en ¿Qué es y para qué sirve Google Analytics?
Featured Posts
  • Etiquetas seo importantes para tu web 1
    Etiquetas SEO: Las Más Importantes para Optimizar tu Web
    • 9 de marzo de 2025
  • Buyer Persona Qué es, para qué sirve y cómo definir el tuyo 2
    Buyer Persona: Qué es, para qué sirve y cómo definir el tuyo
    • 2 de marzo de 2025
  • Meta Pixel Facebook 3
    Meta Pixel: Qué es y cómo funciona
    • 23 de febrero de 2025
  • que es el seo y porque es importante 4
    ¿Qué es el SEO y por qué es importante? Guía completa
    • 16 de febrero de 2025
  • customer journey 5
    Qué es el Customer Journey y Cómo Optimizarlo para tu Negocio
    • 9 de febrero de 2025
Recent Posts
  • Embudo de Ventas Qué Es, Cómo Funciona y Por Qué es Clave para Vender
    Embudo de Ventas: Qué es, cómo funciona y por qué es Clave
    • 2 de febrero de 2025
  • Remarketing: Qué es, Cómo Funciona y Mejores Estrategias
    • 26 de enero de 2025
  • Bing Web Master Tool: Qué es y todo lo que necesitas saber
    • 20 de octubre de 2024
Categories
  • Analytica Digital (10)
  • API (5)
  • Bing (2)
  • Blog (9)
  • eCommerce (10)
  • Emprendimiento (10)
  • Facebook Meta (1)
  • Google (4)
  • Herramientas (11)
  • make.com (2)
  • Marketing (4)
  • Marketing Digital (5)
  • SEO (1)
  • Tips de adulto (1)

Suscribir

Suscríbete a mi Newsletter

Daniel Amorós
  • Inicio
  • Sobre Daniel
  • Contacto
Sumérgete en emprendimiento, negocios, marketing, SEO, eCommerce y Tutoriales. Conéctate con ideas que transforman mientras aprendes.

Ingresa las palabras de la búsqueda y presiona Enter.

Ir a la versión móvil