Récupérer les portefeuilles associés à un client spécifique.
GET
/
customers
/
{customer_id}
/
wallets
JavaScript
Copier
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);