Skip to main content
GET
List payouts

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string

Content-Type must be set to application/json.

Path Parameters

businessId
string
required

The UUID of the business to fetch payouts for.

Query Parameters

external_id
string

Filter payouts by external ID (unique idempotency key). This will always yield zero or one result.

memo_contains
string

Filter payouts by memo content. Returns payouts where the memo contains this string (case-sensitive).

memo_exact
string

Filter payouts by exact memo match. Returns payouts where the memo exactly matches this string.

completed_at_start
string<date-time>

Filter payouts by completion date. Payouts completed on or after this date will be included. ISO 8601 date format.

completed_at_end
string<date-time>

Filter payouts by completion date. Payouts completed on or before this date will be included. ISO 8601 date format.

amount_min
integer<int64>

Filter payouts by minimum amount. Only payouts with amounts greater than or equal to this value will be included.

amount_max
integer<int64>

Filter payouts by maximum amount. Only payouts with amounts less than or equal to this value will be included.

reference_number
string

Filter by exact reference number match. Returns only records with this exact reference number.

reference_numbers
string

Comma-separated list of reference numbers to filter payouts by. Only payouts with reference numbers matching any value in this list will be returned.

is_matched
boolean

Filter payout by match status. If true, only matched payouts will be returned. If false, only unmatched payouts will be returned.

Response

data
object[]
required
meta
object

Request metadata. Present on paginated list responses.