Skip to main content
Follow a payment you sent or requested through its lifecycle, list every money movement on your account, and cancel a payment before it settles.

Get one payment

Look up a payment with GET /payments/{paymentId} to read its current status.
The response carries the payment’s status, amount, and the parties on each side: A healthy payment moves CREATED to PROCESSING to COMPLETED. It can pause at PENDING_CLAIM while it waits for a new recipient to claim the funds, or at IN_REVIEW during a compliance hold. It ends at FAILED, RETURNED, CANCELED, or APPROVAL_DENIED.

List all money movement

GET /transactions returns all your transactions: every payment, transfer, deposit, and withdrawal, in reverse-chronological order.
To read a customer’s transactions instead of your own, add the customerPartyId query param.

Cancel a payment

Cancel a payment with POST /payments/{paymentId}/cancel while it is still PENDING_CLAIM.
The payment moves to CANCELED and no funds leave your wallet:
Cancellation only works before settlement. Once a payment reaches PROCESSING, the funds are already moving and it can no longer be canceled.