curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/webhooks/events \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"aggregate_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"attempts": 2,
"created_at": "2026-02-12T12:05:00Z",
"event_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"event_type": "transaction.completed",
"last_error": null,
"merchant_reference": "order-4551",
"publish_status": "dispatched",
"updated_at": "2026-02-12T12:05:10Z"
}
],
"has_more": false,
"limit": 20,
"next_cursor": null
},
"success": true
}Returns partner-scoped webhook events with deterministic cursor pagination for recovery and audit workflows. This endpoint reads CashWeb delivery records only and does not enrich each row with downstream delivery telemetry.
curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/webhooks/events \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"aggregate_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"attempts": 2,
"created_at": "2026-02-12T12:05:00Z",
"event_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"event_type": "transaction.completed",
"last_error": null,
"merchant_reference": "order-4551",
"publish_status": "dispatched",
"updated_at": "2026-02-12T12:05:10Z"
}
],
"has_more": false,
"limit": 20,
"next_cursor": null
},
"success": true
}Filter by aggregate transaction identifier.
Filter by canonical merchant reference.
Filter by consumer-facing webhook event type.
Filter by local publish status.
Inclusive start time in RFC3339.
Inclusive end time in RFC3339.
Opaque cursor returned by the previous response.
Requested page size.
1 <= x <= 100Webhook event list retrieved
Standard API response wrapper for all successful responses