[POST] .../v1/connectedintegration/getwebhookinfo
Returns information about webhook details and call statistics for the connected integration. Use this method to inspect webhook delivery health for a connected integration before troubleshooting event delivery or changing webhook configuration. The response returns the current reputation status, blacklist TTL when applicable, total successful and failed webhook calls, and the most recent recorded delivery error with its timestamp. The request body is required and connected_integration_id must identify the integration whose webhook status should be inspected when filters are not used; public filters metadata exposes connected_integration_id as the only lookup field for this method. The method reads webhook status data and does not modify integration configuration; it does not perform an explicit permission check in the controller and relies on the current request context and webhook persistent lookup for access behavior. Missing body, missing connected_integration_id, unresolved webhook status, storage errors, and webhook persistent failures are returned as HTTP 200 ErrorResult business errors. Related workflow methods are IntegrationWebhook/Get for webhook definitions and Event/Get for the event stream delivered through webhooks.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| filters | Array of Filter | Optional | Optional filters by fields available for this API method. |
Filterable Fields
| Field | Type | Description |
|---|---|---|
| connected_integration_id | string | Connected integration ID. Required as this legacy body field or through filters. |
Request Example
{
"filters": [
{
"field": "connected_integration_id",
"operator": "Equal",
"value": "c98210addc4f4e1bb50b17a8c1299a37"
}
]
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | WebHookStatusResponse | Result object. |
Response Example
{
"ok": true,
"result": {
"reputation_status": "Grey",
"blacklist_ttl_seconds": null,
"total_success": 128,
"total_fail": 3,
"last_error_message": null,
"last_error_at": "2026-02-02T05:39:07.0740701\u002B00:00"
}
}