Receive WhatsApp messages using C# and webhook

Introduction

In this tutorial, we will create a simple example to read incoming WhatsApp messages using c#.

Download the project

You can download the project files from GitHub.

Dependencies

for local development purposes, a tunneling service is required. This example uses ngrok , you can download Ngrok from here.

run project

dotnet watch

Start Ngrok

ngrok http https://localhost:6000

set Webhook URL

Go to your ultramsg account for set Webhook URL after copying the Ngrok URL and add /api/ Route like this:

image 8
Webhook on Received: TRUE

receive WhatsApp messages

now You should be able to receive WhatsApp webhooks .

Example json response:

{
  "event_type": "message_received",
  "instanceId": "1150",
  "id": "",
  "referenceId": "",
  "data": {
    "id": "[email protected]_3EB02E5EB89CE03FB034",
    "from": "[email protected]",
    "to": "[email protected]",
    "author": "",
    "pushname": "E.St",
    "ack": "",
    "type": "chat",
    "body": "Hi",
    "media": "",
    "fromMe": false,
    "isForwarded": false,
    "isMentioned": false,
    "quotedMsg": {},
    "mentionedIds": [],
    "time": 1650002663
  }
}

Congratulations!

You can visit the project on GitHub .