Dedicated

Unlike shared webhook, dedicated webhook is directly linked to the user account. Only notifications for the specific user are received.

Even when the service sends all data to only one URL registered for the user, it's dedicated webhook. It's up to you how the app will handle incoming data. Over 90% of services use dedicated webhooks, think twice before using shared one.

Types of dedicated webhooks

Attached dedicated webhook

The new URL address, which has been created, is automatically registered to the service using attach procedure, and can be unregistered using detach procedure.

pageAttached

If there is an endpoint for registration of webhook in the API available, the attach directive should be implemented.

Not attached dedicated webhook

The new URL address, which has been created, has to be then registered manually by the user. Basically, user copies the URL address and pastes it to the webhook's settings of the web service.

pageNot attached

If there is no attach directive available in the API, but the web service allows setting up a webhook manually, implement the dedicated webhook without attach directive.

Last updated