Recupera i portafogli associati a un cliente specifico.
GET
/
customers
/
{customer_id}
/
wallets
JavaScript
Copia
Chiedi all'IA
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);