import Ivy from '@getivy/node-sdk';const client = new Ivy({ apiKey: process.env['IVY_API_KEY'], // This is the default and can be omitted});const subscription = await client.webhook.subscription.delete({ id: {} });console.log(subscription.success);
Copy
Ask AI
{ "success": true}
Webhook-Subscription
Delete a webhook subscription
Deletes a webhook subscription.
POST
/
api
/
service
/
webhook-subscription
/
delete
JavaScript
Copy
Ask AI
import Ivy from '@getivy/node-sdk';const client = new Ivy({ apiKey: process.env['IVY_API_KEY'], // This is the default and can be omitted});const subscription = await client.webhook.subscription.delete({ id: {} });console.log(subscription.success);