Handle inbound Twilio WhatsApp message webhooks
POST
Handle inbound Twilio WhatsApp message webhooks
Path Parameters
Response
200
Webhook event processed successfully
Last modified on July 17, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
InteraOne is open source — star or contribute on GitHub.
curl --request POST \
--url http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}const options = {method: 'POST'};
fetch('http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}"
response = requests.post(url)
print(response.text)Webhook event processed successfully
curl --request POST \
--url http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}const options = {method: 'POST'};
fetch('http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/channels/whatsapp/inbound/{channelId}"
response = requests.post(url)
print(response.text)