import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.webhooks.delete('webhook_id');
Delete a specific webhook.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.webhooks.delete('webhook_id');
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Webhook has been deleted
Was this page helpful?