원장 ID, 이벤트 유형, 금액 등을 포함한 완전한 지급 분할을 CSV 파일로 다운로드합니다.
GET
/
payouts
/
{payout_id}
/
breakup
/
details
/
csv
JavaScript
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
await client.payouts.breakup.details.downloadCsv('payout_id');
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
await client.payouts.breakup.details.downloadCsv('payout_id');