List all Payouts
Retrieve a list of payout orders with optional filtering and pagination support.
Usage Guidelines
- Default behavior: If no date range is specified, returns the first page of payouts created from one month ago to today.
- Date range filtering: When using date filters, both
start_timeandend_timeparameters are required, andend_timemust be greater than or equal tostart_time. The time range must not exceed one month.
Documentation Index
Fetch the complete documentation index at: https://developers.uqpay.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
The API token for login provided by UQPay.
Headers
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts. If omitted or empty, the request is executed using the master account.
More information at Connected Accounts.
A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.
Query Parameters
The page number to retrieve the next set of items. The number has to be greater than 1.
x >= 11
The maximum number of items to return per page. This number can be between 1 - 100
1 <= x <= 10010
Payout creation start date (inclusive). Date format YYYY-MM-DD represents the start of the day (00:00:00).
"2025-07-01"
Payout creation end date (inclusive). Date format YYYY-MM-DD represents the end of the day (23:59:59).
"2025-07-31"
Payout status filter Payout status enumeration
INITIATED, PROCESSING, COMPLETED, FAILED, FAILED_REFUNDED "INITIATED"

