मुख्य सामग्री पर जाएं
GET
/
payouts
/
{payout_id}
/
breakup
/
details
JavaScript
import DodoPayments from 'dodopayments';

const client = new DodoPayments({
  bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});

// Automatically fetches more pages as needed.
for await (const detailListResponse of client.payouts.breakup.details.list('payout_id')) {
  console.log(detailListResponse.id);
}
{
  "items": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "event_type": "<string>",
      "id": "<string>",
      "original_amount": 123,
      "original_currency": "<string>",
      "payout_currency_amount": 123,
      "usd_equivalent_amount": 123,
      "description": "<string>",
      "reference_object_id": "<string>"
    }
  ]
}

प्राधिकरण

Authorization
string
header
आवश्यक

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

पथ पैरामीटर

payout_id
string
आवश्यक

Id of the Payout to get breakup for

क्वेरी पैरामीटर

page_size
integer<int32>

Number of items per page. Default: 10, Max: 100.

आवश्यक सीमा: x >= 0
page_number
integer<int32>

Page number (0-indexed). Default: 0.

आवश्यक सीमा: x >= 0

प्रतिक्रिया

Per-row payout breakup in payout currency

Paginated response containing individual payout breakup entries.

items
object[]
आवश्यक

List of payout breakup detail entries.

Last modified on April 1, 2026