# Introduction

Receiving incoming data is accomplished using Webhook. This technology will allow you to be instantly notified of any event on your WhatsApp. Our channels fulfill requests for events they have executed by a pre-configured URL. For each request there is a specific JSON body, which will be described later.

### What is it and what is it used for?

Webhook is a resource used to link one application to another, providing real-time data when an event occurs. In this way, two systems exchange information without the need for any external action.

Webhook technology allows incoming notifications to be delivered directly to your server. This means that the Whapi.Cloud server will execute a method call published on your server side.

In order for you to receive information from Whatsapp, it is necessary to provide these endpoints in your application so that we can notify you about everything that happens on your WhatsApp.&#x20;

{% hint style="info" %}
The simplest example would be to receive a message about incoming messages or for example to track changes in the status of a message or information about new members joining a group.
{% endhint %}

That is, every time the connected number receives an interaction, we will make a request with the `POST`/`PUT`/`PATCH`/`DELETE` method to the previously configured URL. (For each request there is a specific JSON body).

***

[our-webhooks-tracked-events](https://support.whapi.cloud/help-desk/receiving/webhooks/our-webhooks-tracked-events "mention")  - describes all the events that you can be notified about.

[set-the-webhook-link-to-the-channel](https://support.whapi.cloud/help-desk/receiving/webhooks/set-the-webhook-link-to-the-channel "mention")  - how to install a webhook on your channel, in the UI and via API.

[detailed-webhook-settings](https://support.whapi.cloud/help-desk/receiving/webhooks/detailed-webhook-settings "mention")  - detailed description of additional settings that will help you in your work.

[how-to-check-the-webhook](https://support.whapi.cloud/help-desk/receiving/webhooks/how-to-check-the-webhook "mention")  - tell you how to test your webhook online and locally.

[incoming-webhooks-format](https://support.whapi.cloud/help-desk/receiving/webhooks/incoming-webhooks-format "mention")  - here are the formats of incoming requests.

[receive-messages](https://support.whapi.cloud/help-desk/receiving/webhooks/receive-messages "mention")  - how to handle incoming requests with code examples.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.whapi.cloud/help-desk/receiving/introduction.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
