Receive notifications about new and cancelled customer deliveries on a webhook.
To register a webhook, please provide the following information:
url: E.g.https://example.com:1234/hook-endpointmethod:"POST","PUT"or"PATCH"headers: Optional headers to send with the requestauthorization: Optional authorization to usetype: Currently only"basic"is supported. Use custom headers for a token or an API key.username: The user namepassword: The password
Response codes
The endpoint must return a status code 200 or 201. Otherwise the
message will be sent again. Use the idempotency_key to recognize a repeated
delivery of the same event.
Event structure
type: The event type, e.g."request-delivery"idempotency_key: A random key, unique to the event. It can be used to recognize subsequent retries of the same event.data: The event data, depending on the event type.