Descarga el desglose completo del pago como un archivo CSV con columnas para ID de libro mayor, tipo de evento, cantidades y más.
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');
Asistente
Las respuestas son generadas por IA y pueden contener errores.