> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.me-mate.net/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.me-mate.net/_mcp/server.

# whatsapp form/flow webhook

POST https://business.me-mate.net/#post3
Content-Type: application/json

## **Payload**

| Field | Type | Description |
| --- | --- | --- |
| `userInfo.receiver` | String | WhatsApp number of the user who submitted the form (in international format, e.g., 96650xxxxx12). |
| `userInfo.profile_name` | String | The display name or profile name of the user. |
| `flow_id` | String / Number | Unique identifier of the WhatsApp Flow or Form. |
| `targetedMsgId` | String | WAMID of the original message that triggered the form or flow. |
| `flow_name` | String | The name of the WhatsApp Flow or Form. |
| `data` | Array | An array of objects containing the user’s responses. Each object represents a screen or step in the Flow. |
| `data[].` | Array | The selected answers or inputs from that screen’s component (e.g., radio buttons, checkboxes). |

---

Reference: https://apidocs.me-mate.net/business-me-mate-net-ap-is-document-v-1-0/webhooks/whatsapp-form-flow-webhook

## Request

### Body (application/json)

- `data` (list of object, required)
  - `RadioButtonsGroup_kStu4f_screen_0` (list of string, required)
- `flow_id` (integer, required)
- `userInfo` (object, required)
  - `receiver` (string, required)
  - `profile_name` (string, required)
- `flow_name` (string, required)
- `targetedMsgId` (string, required)

## Examples

**Request**

```json
{
  "data": [
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "single choice2"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    }
  ],
  "flow_id": 1304845874860945,
  "userInfo": {
    "receiver": "9667974758902",
    "profile_name": "~Ahmed"
  },
  "flow_name": "myflow 09-18-05",
  "targetedMsgId": "wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA=="
}
```

**SDK Code**

```python
import requests

url = "https://business.me-mate.net/#post3"

payload = {
    "data": [{ "RadioButtonsGroup_kStu4f_screen_0": ["single choice2"] }, { "RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"] }, { "RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"] }, { "RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"] }],
    "flow_id": 1304845874860945,
    "userInfo": {
        "receiver": "9667974758902",
        "profile_name": "~Ahmed"
    },
    "flow_name": "myflow 09-18-05",
    "targetedMsgId": "wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA=="
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://business.me-mate.net/#post3';
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{"data":[{"RadioButtonsGroup_kStu4f_screen_0":["single choice2"]},{"RadioButtonsGroup_kStu4f_screen_0":["RadioButtonsGroup_kStu4f_screen_0"]},{"RadioButtonsGroup_kStu4f_screen_0":["RadioButtonsGroup_kStu4f_screen_0"]},{"RadioButtonsGroup_kStu4f_screen_0":["RadioButtonsGroup_kStu4f_screen_0"]}],"flow_id":1304845874860945,"userInfo":{"receiver":"9667974758902","profile_name":"~Ahmed"},"flow_name":"myflow 09-18-05","targetedMsgId":"wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA=="}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://business.me-mate.net/#post3"

	payload := strings.NewReader("{\n  \"data\": [\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"single choice2\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    }\n  ],\n  \"flow_id\": 1304845874860945,\n  \"userInfo\": {\n    \"receiver\": \"9667974758902\",\n    \"profile_name\": \"~Ahmed\"\n  },\n  \"flow_name\": \"myflow 09-18-05\",\n  \"targetedMsgId\": \"wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA==\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://business.me-mate.net/#post3")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n  \"data\": [\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"single choice2\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    }\n  ],\n  \"flow_id\": 1304845874860945,\n  \"userInfo\": {\n    \"receiver\": \"9667974758902\",\n    \"profile_name\": \"~Ahmed\"\n  },\n  \"flow_name\": \"myflow 09-18-05\",\n  \"targetedMsgId\": \"wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA==\"\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://business.me-mate.net/#post3")
  .header("Content-Type", "application/json")
  .body("{\n  \"data\": [\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"single choice2\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    }\n  ],\n  \"flow_id\": 1304845874860945,\n  \"userInfo\": {\n    \"receiver\": \"9667974758902\",\n    \"profile_name\": \"~Ahmed\"\n  },\n  \"flow_name\": \"myflow 09-18-05\",\n  \"targetedMsgId\": \"wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA==\"\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://business.me-mate.net/#post3', [
  'body' => '{
  "data": [
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "single choice2"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    },
    {
      "RadioButtonsGroup_kStu4f_screen_0": [
        "RadioButtonsGroup_kStu4f_screen_0"
      ]
    }
  ],
  "flow_id": 1304845874860945,
  "userInfo": {
    "receiver": "9667974758902",
    "profile_name": "~Ahmed"
  },
  "flow_name": "myflow 09-18-05",
  "targetedMsgId": "wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA=="
}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://business.me-mate.net/#post3");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"data\": [\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"single choice2\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    },\n    {\n      \"RadioButtonsGroup_kStu4f_screen_0\": [\n        \"RadioButtonsGroup_kStu4f_screen_0\"\n      ]\n    }\n  ],\n  \"flow_id\": 1304845874860945,\n  \"userInfo\": {\n    \"receiver\": \"9667974758902\",\n    \"profile_name\": \"~Ahmed\"\n  },\n  \"flow_name\": \"myflow 09-18-05\",\n  \"targetedMsgId\": \"wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA==\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [
  "data": [["RadioButtonsGroup_kStu4f_screen_0": ["single choice2"]], ["RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"]], ["RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"]], ["RadioButtonsGroup_kStu4f_screen_0": ["RadioButtonsGroup_kStu4f_screen_0"]]],
  "flow_id": 1304845874860945,
  "userInfo": [
    "receiver": "9667974758902",
    "profile_name": "~Ahmed"
  ],
  "flow_name": "myflow 09-18-05",
  "targetedMsgId": "wamid.HBgMOTE3OTc0NzU4OTAyFQIAERgSRTkzNUUyRDZEODM5MDQ4RTUzAA=="
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://business.me-mate.net/#post3")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```