Payload send to webhook url
Webhooks have 3 general result types:Type | Description |
---|
Normal Object | Either a Create, Update or Delete for objects like Card, Collection and Comment |
Nested objects | Either an Attached or Detached object to a parent object like a Label or Resource attached to a Card or Collection |
Nested objects with pivot values | Same as Nested objects however with pivot values, like Activity attached to a Card with a time estimate of 60 minutes |
We strongly suggest that you respond with a 2xx HTTP status code immediately after receiving the message and handle all other tasks afterward.Think of it like parcel delivery, if you were to drop off a parcel at the service point, they would issue a receipt stating that the parcel is being sent. They don't make you wait
2xx
Your server must return a code between 200 and 299 if it accepts the callback, anything else will be seen as a failure and will be retried laterYour server should respond within a few seconds.
The attempt can be considered as failed if:connection could not be established within 5 seconds
response is not received after a total of 10 seconds
We strongly suggest that you respond with a 2xx HTTP status code immediately after receiving the message and handle all other tasks afterward.Think of it like parcel delivery, if you were to drop off a parcel at the service point, they would issue a receipt stating that the parcel is being sent. They don't make you wait for the recipient to receive and use the package.
If your server does not return a valid response, the webhook will be retried after:attempt | delay |
---|
1 | 1 minute |
2 | 5 minutes |
3 | 60 minutes |
The content of a delayed webhook event will be identical to the original.The current property will have the values of the current object at the time of the event!
After 250 consecutive failed attempts a warning mail will be sent to all administratorsAfter 500 consecutive failed attempts the webhook will be disabled! All administrators will be notified via mail.Reactivation is only possible by manually deactivating and activating the webhook via the web front end.