> ## Documentation Index
> Fetch the complete documentation index at: https://developer.qminder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhooks

> Using this API, Webhook endpoint URLs can be managed programmatically.

[Read more on how to utilize webhooks for your API integration.](/reference/webhooks-overview)

### Fields

Webhook endpoints have the following data fields:

| Name       | Type   | Description                                                                                                                                                                               |
| ---------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **id**     | number | The unique ID of the webhook endpoint registration.                                                                                                                                       |
| **url**    | string | The URL that will receive webhook HTTP requests.                                                                                                                                          |
| **secret** | string | The HMAC-SHA256 shared secret for webhook signature verification. [Read more on how to secure webhooks with signature verification.](/reference/webhooks-overview#webhook-authentication) |

### Code examples

This is a webhook endpoint object as returned by our RESTful API and our official libraries.

<CodeGroup>
  ```bash bash theme={null}
  {
    "id": 827,
    "secret": "wfdfghfhfgdsfderthyndf4356hyfds"
  }
  ```
</CodeGroup>
