Webhook allows you to receive notifications from Equotix One when any of the subscribed events happen. You can subscribe to a webhook from your Equotix One dashboard.Subscribing to Webhook#
The page to enter your webhook URL can be found in Settings >> Webhook.| Field | Description |
|---|
| Status | The status of the webhook. |
| Callback URL | The webhook URL to receive the data. |
| Events | The events you wish to receive. |
| Webhook Sent (This Month) | The total count for webhook sent out this month to your callback URL. |
| Failed Count | The total count for webhook sent out that failed this month. |
Retries and Failure#
Webhook waits for a 200 http response code within 5 seconds. If for some reason the connection is disrupted or unavailable, the webhook will retry another 4 more times before stopping.Webhook will retry after 2 minutes for the first retry, 4 minutes for the second retry and an extension of 2 minutes per each retry.If a webhook has more than 50% failure rate in a month, it will be automatically disabled until you re-enable it.Example Webhook#
All webhooks are sent via POST with a JSON payload. It is presented in this general format.{
"event": "string",
"data": {
...
}
}| Field | Description |
|---|
| event | The event type of the webhook you have subscribed to. |
| data | The data in the webhook, depending on the event type. Refer to the respective webhook documentation. |
Modified at 2025-12-09 07:47:25