Create
To create a new webhook you need to execute a POST request against the /webhooks endpoint.
endpoint -> the URL where the webhook will send the POST request to.
events -> an array of events for which the webhook will trigger. Read about the currently available events here. In the future support for more events will be added -> e.g. to able to receive a webhook when a recording is started or has been processed.
authorization_header -> The authorization header is a secret which only your backend and DigitalSamba know about. It is an optional field, but its highly recommended to use it, so you can protect your endpoint from unauthorized calls. The webhook will send the secret as a standard Authorization Bearer http header.
name -> optional text description of your webhook
For quick testing you may want to use as endpoint https://webhook.site/ which is a free public service. It allows you to inspect the payload structure of the received webhook requests.
Response (200 OK)
Read about the payload structure which you will receive at your configured endpoint.
Last updated