Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.knoxcall.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Webhook Logs

GET /v1/webhooks/:id/logs
Returns paginated delivery logs for a specific webhook, showing every delivery attempt with status and timing.

Path Parameters

ParameterTypeDescription
iduuidThe webhook ID

Query Parameters

ParameterTypeDefaultDescription
pageinteger1Page number
per_pageinteger20Items per page (max 100)

Response

{
  "data": [
    {
      "id": "log-uuid",
      "request_method": "POST",
      "request_path": "/services/T00/B00/xxx",
      "request_ip": "203.0.113.1",
      "response_status": 200,
      "response_time_ms": 342,
      "executed_at": "2026-03-10T14:22:01.000Z",
      "success": true,
      "error_message": null
    }
  ],
  "meta": {
    "total": 142,
    "page": 1,
    "per_page": 20,
    "total_pages": 8,
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Errors

StatusTypeDescription
404not_foundWebhook not found