ListPayouts
Retrieves a list of all payouts for the default location. You can filter payouts by location ID, status, time range, and order them in ascending or descending order. To call this endpoint, set PAYOUTS_READ for the OAuth scope.
Query parameters
The ID of the location for which to list the payouts. By default, payouts are returned for the default (main) location associated with the seller.
Payout status types
If provided, only payouts with the given status are returned.
The timestamp for the beginning of the payout creation time, in RFC 3339 format. Inclusive. Default: The current time minus one year.
The timestamp for the end of the payout creation time, in RFC 3339 format. Default: The current time.
The order (e.g., chronological or alphabetical) in which results from a request are returned.
The order in which payouts are listed.
A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for the original query. For more information, see Pagination. If request parameters change between requests, subsequent results may contain duplicates or missing records.
The maximum number of results to be returned in a single page. It is possible to receive fewer results than the specified limit on a given page. The default value of 100 is also the maximum allowed value. If the provided value is greater than 100, it is ignored and the default value is used instead. Default: 100
Response
Success
Example response
{
"cursor": "EMPCyStibo64hS8wLayZPp3oedR3AeEUNd3z7u6zphi72LQZFIEMbkKVvot9eefpU",
"payouts": [
{
"amount_money": {
"amount": 6259,
"currency_code": "USD"
},
"arrival_date": "2022-03-29",
"created_at": "2022-03-29T16:12:31Z",
"destination": {
"id": "ccof:ZPp3oedR3AeEUNd3z7",
"type": "CARD"
},
"end_to_end_id": "L2100000005",
"id": "po_b345d2c7-90b3-4f0b-a2aa-df1def7f8afc",
"location_id": "L88917AVBK2S5",
"payout_fee": [
{
"amount_money": {
"amount": 95,
"currency_code": "USD"
},
"effective_at": "2022-03-29T16:12:31Z",
"type": "TRANSFER_FEE"
}
],
"status": "PAID",
"type": "BATCH",
"updated_at": "2022-03-30T01:07:22.875Z",
"version": 2
},
{
"amount_money": {
"amount": -103,
"currency_code": "USD"
},
"arrival_date": "2022-03-24",
"created_at": "2022-03-24T03:07:09Z",
"destination": {
"id": "bact:ZPp3oedR3AeEUNd3z7",
"type": "BANK_ACCOUNT"
},
"end_to_end_id": "L2100000006",
"id": "po_f3c0fb38-a5ce-427d-b858-52b925b72e45",
"location_id": "L88917AVBK2S5",
"status": "PAID",
"type": "BATCH",
"updated_at": "2022-03-24T03:07:09Z",
"version": 1
}
]
}