Get a list of transactions included in payout by ID
Learn how to get a list of transactions included in the payout by identifier.
Parameter | Required/Optional | Description |
---|---|---|
id | Required | Unique payout identifier. |
To retrieve a list of transactions for a payout, you must supply the unique identifier of the payout:
Request header example
GET /payouts/8100000400_1410_2019/transactions
A
200 OK
response returns an array of Payout Transaction objects.Payout Transaction object example
{
"hasMore": true,
"data": [
{
"id": "8100000400_1410_2019",
"createdTime": "2018-04-25T20:36:00Z",
"currency": "USD",
"amount": 1180.26,
"payoutId": "2000028600_1410_2019",
"description": "Sales for Period Ended 04-25-2020",
"type": "sales_summary",
"liveMode": true
}
]
}
The following information provides details on the key attributes returned in response to a request for payout transaction information. For a complete list, refer to the Payouts API reference.
A unique identifier for the payout transaction.
The time at which the payout transaction was created in the reporting environment.
The three-letter ISO currency code representing the type of currency used in the payout transaction.
Represents the payout transaction amount.
The unique payout identifier.
A unique identifier for the sales summary containing the payout transactions.
A text description of the payout transaction.
Designates the type of payout transaction. Supported types are
sale
, return
, refund
, fraud_chargeback
, and non_fraud_chargeback
.Last modified 5mo ago