import DodoPayments from 'dodopayments';const client = new DodoPayments({ bearerToken: 'My Bearer Token',});// Automatically fetches more pages as needed.for await (const webhookDetails of client.webhooks.list()) { console.log(webhookDetails.id);}
import DodoPayments from 'dodopayments';const client = new DodoPayments({ bearerToken: 'My Bearer Token',});// Automatically fetches more pages as needed.for await (const webhookDetails of client.webhooks.list()) { console.log(webhookDetails.id);}