List payments
Returns a paginated list of payments, sorted by creation time in
descending order (newest first). If no payments match the filters, the
response is 200 OK with an empty data array.
Authorizations
Use your secret API key as the Bearer token. Test mode keys start with
api_test_sk_ and live mode keys start with api_live_sk_. Both modes
use the same API host; the mode is determined by the key.
Authorization: Bearer api_test_sk_abc123def456Query Parameters
Maximum number of payments to return. Accepts values between 1 and 100.
1 <= x <= 100Cursor for forward pagination. Provide the id of the last payment
in the previous page. Mutually exclusive with ending_before.
Unique opaque identifier for a payment (pay_ prefix + random alphanumeric suffix).
^pay_[A-Za-z0-9]{24}$"pay_q7Mk2Np8Vr4Xt6Yz9Ab3Cd5E"
Cursor for backward pagination. Provide the id of the first
payment in the current page. Mutually exclusive with starting_after.
Unique opaque identifier for a payment (pay_ prefix + random alphanumeric suffix).
^pay_[A-Za-z0-9]{24}$"pay_q7Mk2Np8Vr4Xt6Yz9Ab3Cd5E"
Filter payments by status. Current status of a payment attempt.
PENDING-- The payment was accepted by Flowlix and is waiting to be processed.REQUIRES_ACTION-- Customer action is required, usually 3D Secure authentication.PROCESSING-- The payment is being processed by downstream payment systems.SUCCEEDED-- The payment completed successfully.FAILED-- The payment was declined or failed permanently.CANCELED-- The payment was canceled before completion.EXPIRED-- The customer did not complete a required action before its expiry time.
PENDING, REQUIRES_ACTION, PROCESSING, SUCCEEDED, FAILED, CANCELED, EXPIRED "SUCCEEDED"
Return payments created on or after this Unix timestamp in seconds.
Return payments created before this Unix timestamp in seconds.