Creating webhook subscriptions

Every aspect of webhooks creation and management is controlled through the Webhooks subscription API at this time. A subscription object is composed of a callback URL and the array of events that the consumer would like to be notified about.

To create a webhook, use the following endpoint:

POST /subscriptions

Specify the callback URL and the list of events your application is interested in. You can include as many events as you would like.

You can find the full list of available event subscriptions under the “Callbacks” tab of the POST /subscriptions endpoint in Live Docs.

Please consider securing your webhook endpoint with authentication. Please check "callbackAuthentication" property in POST /subscriptions.