Delete Webhook

Delete webhook listener endpoint.

Path Parameters
  • webhook_id
    Type: string
    required

    Unique identifier for the Gumlet Webhook which needs to be deleted.

Responses
  • application/json
  • application/json
Request Example for delete/org/webhooks/{webhook_id}
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

const webhookAPI = await client.webhookAPIs.delete('webhookId');

console.log(webhookAPI);
{}