This is the unified.to management API that allows you to manage your connections and other objects.
Data Model
Webhooks
Webhooks will retry for up to 20 times to make a successful call to your specific URL. Each retry will be delayed by the Fibonacci sequence number of that retry in minutes.
eg. 1st retry will wait 1 minute, 2nd retry will wait 2 minutes, 7th retry will wait 21 minutes, 12th retry will wait 233 minutes
This is the payload object that will be sent back to your desired URL in a POST
call:
data | object array | The data array will contact an array of specific objects according to the webhook's connection. (eg. CRM Contacts) |
webhook | Webhook | The webhook object |
nonce | string | Random string |
sig | string | HMAC-SHA1(workspace.secret, data + nonce) |