GET
/api/Payouts/summary
const url = 'https://example.com/api/Payouts/summary';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/Payouts/summary \ --header 'Authorization: Bearer <token>'Returns aggregate totals (settled, processing, pending, fees) used to populate the payout summary cards on the merchant dashboard. Defaults to the last 30 days.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” MerchantId
string format: uuid
From
string format: date-time
To
string format: date-time
Responses
Section titled “ Responses ”Aggregate payout totals.
Media type application/json
object
totalSettled
number format: double
totalProcessing
number format: double
totalPending
number format: double
totalFees
number format: double
settledCount
integer format: int32
currency
string
Example generated
{ "totalSettled": 1, "totalProcessing": 1, "totalPending": 1, "totalFees": 1, "settledCount": 1, "currency": "example"}