Using this API, Webhook endpoint URLs can be managed programmatically.
Read more on how to utilize webhooks for your API integration.
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. |
Code examples
This is a webhook endpoint object as returned by our RESTful API and our official libraries.
{
"id": 827,
"secret": "wfdfghfhfgdsfderthyndf4356hyfds"
}