Dedicated
Unlike shared webhook, dedicated webhook is directly linked to the user account. Only notifications for the specific user are received.
Last updated
Unlike shared webhook, dedicated webhook is directly linked to the user account. Only notifications for the specific user are received.
Last updated
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.
The new URL address, which has been created, is automatically registered to the service using attach procedure, and can be unregistered using detach procedure.
If there is an endpoint for registration of webhook in the API available, the attach directive should be implemented.
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.
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.