Skip to main content
GET

Query Parameters

integer
default:"1"
Page number for pagination. Must be a positive integer.
integer
default:"50"
Number of results per page. Maximum value is 200. Default is 50.
string
Filter payouts by status. Valid values: pending, processing, completed, failed, cancelled.
string
Filter payouts by affiliate ID. Only returns payouts for the specified affiliate.
string
Sort field and direction in the format field:direction. Valid fields: createdAt, updatedAt, amount, processedAt. Valid directions: asc, desc. Example: createdAt:desc.
string
Filter payouts created on or after this date. ISO 8601 date format (e.g., 2024-01-01).
string
Filter payouts created on or before this date. ISO 8601 date format (e.g., 2024-12-31).

Response

The response includes a paginated list of payouts and pagination metadata.
boolean
Always true for successful responses
array
Array of payout objects.
object
Pagination metadata object containing:
  • page (integer): Current page number
  • limit (integer): Number of results per page
  • total (integer): Total number of payouts matching the filters
  • totalPages (integer): Total number of pages
  • hasNextPage (boolean): Whether there is a next page
  • hasPrevPage (boolean): Whether there is a previous page