Webhook options that are available for the async endpoints.
/async endpoints the webhook property comes into play.
This feature proves valuable when waiting for the result isn’t necessary.
Your application can attend to other tasks, and a notification will be triggered upon completion of the render.
All you need to do is specify a URL to receive the data,
and the response will automatically be directed to that endpoint once the request concludes.
Various HTTP methods like POST or PUT can be used, you can also choose to receive the document in base64 or an temporary url to download the file.
See also
Securing your webhook on how
to improve your webhooks security and Webhook event for the payload
that will be sent to your webhook.
The webhook's URL. Should include the scheme, e.g. https://
The way this webhook wants to receive the result.
URL is used an temporary URL will be provided to download the file (the file will be automatically deleted after 1 hour).base64 is used make sure your webhook can receive the size of the file!base64, URL "URL"
Method to use when calling the webhook.
POST, PUT "POST"
An object containing additional HTTP headers to be sent with the webhook. All header values must be strings.
Additional metadata that will be inside the request when the webhook is called. All values must be strings. Max 1kB.