Endpoint
Authentication
All requests must include a valid Dashboard Bearer token in theAuthorization header.
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Bearer <token> — obtain from Login |
Content-Type | string | Yes | application/json |
Request Body
An object of filter criteria to scope the logs returned. At least one filter field is recommended to avoid retrieving the entire unscoped log.
Example Request Body
Response
A successful response returns an array of webhook delivery log entries matching your filter criteria.| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique identifier for this log entry |
event | string | The event type that triggered the delivery attempt |
status | string | Delivery outcome: success or failed |
attempt | integer | Number of delivery attempts made for this event |
payload | object | The JSON payload that was sent to your endpoint |
response_body | string | The response body your endpoint returned |
response_status_code | integer | HTTP status code your endpoint responded with |
created_at | string (ISO 8601) | Timestamp when the delivery was attempted |