Recuperar carteras asociadas con un cliente específico.
GET
/
customers
/
{customer_id}
/
wallets
JavaScript
Copiar
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const wallets = await client.customers.wallets.list('customer_id');
console.log(wallets.items);
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const wallets = await client.customers.wallets.list('customer_id');
console.log(wallets.items);