Visão geral

List webhook deliveries

GET/api/v1/list_webhook_deliveries
Features

List delivery attempts for a webhook with status and response code (PRO).

Price — $0.00003 per call (twice what serving it costs us), charged to the workspace balance, the same as over MCP.

Also reachable by name at POST /api/v1/tools/list_webhook_deliveries.

Input2
Authorizationheaderrequired
Your API key, sent as Authorization: Bearer dbk_YOUR_API_KEY.Sent from your browser straight to the API — never to Docsbook, never stored.
webhook_idinteger · queryrequired
limitinteger · query
Max rows (default 50).
Output3
okboolean
Whether the tool itself succeeded. A tool that ran and refused — an exhausted balance, a plan restriction, a bad argument — answers 200 with ok: false: the call was made and billed, and that refusal is its answer.
resultobject
The tool's own JSON answer, already parsed — not a string to parse a second time.
Show child attributes2
webhook_idnumber
deliveriesobject[]
{ id, status, attempts, response_code, response_body, created_at, delivered_at }.
duration_msinteger
Server-side wall time for the call.
Responses
200The tool ran. Read ok to see whether it succeeded.
401Missing or invalid API key.
Example input
curl 'https://docsbook.io/api/v1/list_webhook_deliveries?webhook_id=0' \
  -H 'Authorization: Bearer dbk_YOUR_API_KEY'
Example output
{
  "ok": true,
  "result": {
    "webhook_id": 0,
    "deliveries": []
  },
  "duration_ms": 0
}

Atualizado

Esta página foi útil?