v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBList 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_time and end_time parameters are required, and end_time must be greater than or equal to start_time. The time range must not exceed one month.
Query parameters
The page number to retrieve the next set of items. The number has to be greater than 1.
The maximum number of items to return per page. This number can be between 1 - 100
Payout creation start date (inclusive). Date format YYYY-MM-DD represents the start of the day (00:00:00).
Payout creation end date (inclusive). Date format YYYY-MM-DD represents the end of the day (23:59:59).
Payout status enumeration.
- INITIATED: Payout has been initiated.
- PROCESSING: Payout is being processed (bank is processing).
- COMPLETED: Payout completed successfully.
- FAILED: Payout failed.
- FAILED_REFUNDED: Payout failed and funds have been refunded.
Payout status filter
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 API. 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.
Response
List of payouts retrieved successfully
Example response
{
"total_pages": 10,
"total_items": 105,
"data": [
{
"payout_id": "PO1968582687224500224",
"payout_amount": "100.00",
"internal_note": "Payment to supplier",
"statement_descriptor": "UQPAY PAYOUT",
"payout_status": "INITIATED",
"create_time": "2024-03-01T00:00:00+08:00",
"completed_time": "2024-03-01T00:00:00+08:00"
}
]
}