Danh sách tất cả các webhook cho một doanh nghiệp.
GET
/
webhooks
JavaScript
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
// 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: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const webhookDetails of client.webhooks.list()) {
console.log(webhookDetails.id);
}