New APIs: Transactions and Webhook Events
GET /transactions returns the payments and refunds settled on your account, most recent first, for reconciliation. Filter by created_after / created_before, status (pending, completed, action_required, in_review, rejected) and type (payment, refund). amount is the net amount settled to your balance after EukaPay fees, expressed in your settlement currency - the same figure shown in the Transactions page of your dashboard and the one that reconciles against GET /balance. cryptoAmount is the quantity that moved on chain.
GET /webhook_events returns the delivery history of your webhooks, with the outcome of each event: succeeded, failed (your endpoint returned a 4xx, so retrying cannot help) or pending (delivery may still be retried). GET /webhook_events/{webhookId} returns one event with the history of its delivery attempts, addressed by the webhookId carried in the webhook payload itself. Events are available for 90 days.
Both endpoints page with limit, starting_after and ending_before, and return records most recent first.
Affected: GET /transactions, GET /webhook_events, GET /webhook_events/{webhookId}
See the API reference for the full filter list and response fields.
