Skip to main content
The Webhook Logs endpoint returns a paginated list of delivery attempt records for your registered webhooks. Each log entry captures the event type delivered, the HTTP status code your server returned, response time, and any error message from failed attempts. Use webhookId and status filters to narrow results when debugging a specific endpoint or triaging a batch of failures.
This endpoint requires the analytics:read permission on your API key.

Request

Headers

string
required
Bearer token using your API key. Format: Bearer cs_live_your_key

Query parameters

integer
default:"50"
Number of log entries to return per page. Maximum 100.
string
Pagination cursor returned by the previous response. Pass this value to retrieve the next page of results.
string
Filter results to delivery attempts for a specific webhook endpoint.
string
Filter results by delivery status. Accepted values: SUCCESS, FAILED, PENDING.

Response

200 — success

array
List of webhook delivery log entries.
integer
Number of log entries returned in this page.
boolean
true if additional pages of results are available.
string
Pagination cursor to pass as lastEvaluatedKey in your next request. null when you have reached the last page.

401 — unauthorized

Returned when your API key is missing, invalid, or lacks the analytics:read permission.

Example

Sample response (200)
A delivery with httpStatus: null means your server was unreachable — check DNS, firewall rules, and TLS certificate validity for the webhook URL. CharityStack considers any non-2xx response code a failure.