Get one payment
Look up a payment withGET /payments/{paymentId} to read its current status.
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.
customerPartyId query param.
Cancel a payment
Cancel a payment withPOST /payments/{paymentId}/cancel while it is still PENDING_CLAIM.
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.