List all payouts

GET {{baseUrl}}/v1/businessAccount/payouts

Request Params

KeyDatatypeRequiredDescription
destinationstringUniversally unique identifier (UUID v4) for the destination bank account. Filters the results to fetch all payouts made to a destination bank account.
typestringDestination bank account type. Filters the results to fetch all payouts made to a specified destination bank account type. This query parameter can be passed multiple times to fetch results matching multiple destination bank account types.
statusstringQueries items with the specified status. Matches any status if unspecified.
statusstringQueries items with the specified status. Matches any status if unspecified.
fromstringQueries items created since the specified date-time (inclusive).
tostringQueries items created before the specified date-time (inclusive).
pageBeforestringA collection ID value used for pagination.

It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageAfter. | | pageAfter | string | | A collection ID value used for pagination.

It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageBefore. | | pageSize | number | | Limits the number of items to be returned.

Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.

If avoided, the collection will determine the page size itself. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"data":[{"id":"a1cbd881-ee22-43ec-91cf-dfecabaea3eb","amount":{"amount":"3.14","currency":"USD"},"status":"complete","sourceWalletId":"1002753955","destination":{"type":"wire","id":"3016a9ca-fe2a-48f4-80d7-16ecfec1de6e","name":"Banco Nacional de México ****7771"},"createDate":"2024-01-16T21:55:02.452Z","updateDate":"2024-01-16T22:00:01.598Z"}]}