Skip to main content
GET
List payouts

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Headers

Zuba-Account-Id
string<uuid>

Optional. Names an owned sub-account (UUID) to act on. Omit to act at the master (tenant) level. Naming an account this key does not own returns 403 not_account_owner.

Query Parameters

beneficiaryId
string<uuid>

Filter by beneficiary ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

clientRef
string

Return the payout created with this client reference (exact match). References are unique per workspace, so at most one payout matches; an empty list means no payout was ever created with this reference.

Maximum string length: 100
Example:

"1000000026117856401"

status
string

Filter by status (comma-separated)

Example:

"processing,paid"

country
string

Filter by country code (comma-separated)

Example:

"DE,GB"

route
string

Filter by payment route (comma-separated)

Example:

"sepa_inst,sepa_credit"

provider
string

Filter by account holder name

Example:

"Acme Ltd"

startDate
string<date-time>

Start date for date range filter (ISO 8601)

Example:

"2024-01-01T00:00:00Z"

endDate
string<date-time>

End date for date range filter (ISO 8601)

Example:

"2024-12-31T23:59:59Z"

minAmount
string

Minimum amount filter (decimal string; the legacy numeric form is also accepted)

Example:

"100"

maxAmount
string

Maximum amount filter (decimal string; the legacy numeric form is also accepted)

Example:

"1000"

Free-text search across payout ID, client reference, reference, beneficiary name, and bank/account details

Maximum string length: 100
Example:

"Chinedu Ibe"

cursor
string

Cursor for pagination (composite: timestamp__uuid)

Example:

"2024-01-15T10:30:00.000Z__a1b2c3d4-e5f6-7890-abcd-ef1234567890"

limit
number
default:20

Number of items per page

Required range: 1 <= x <= 100
Example:

20

Response

List of payouts

hasMore
boolean
required

Whether there are more payouts to load

Example:

true

payouts
object[]
required

List of payouts

nextCursor
string

Next cursor for pagination (composite: timestamp__uuid)

Example:

"2024-01-15T10:30:00.000Z__a1b2c3d4-e5f6-7890-abcd-ef1234567890"

total
number

Total number of payouts matching the query, ignoring pagination. Returned on the first page only (omitted on cursor pages).

Example:

1247