Admin APIWebhooks

Remove webhook

DELETE{handle}.blutui.com/admin/api/webhooks/{id}

Remove a webhook endpoint from a project.

Path parameters

idstringrequired

The ID of the webhook endpoint to remove.

Response

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.webhooks.remove('9a228a02-305b-4bfc-8e69-e523a95c216c')
JSON Response
{
  "id": "9a228a02-305b-4bfc-8e69-e523a95c216c",
  "object": "webhook",
  "deleted": true
}
idstring

The unique identifier for this webhook.

objectstring

This will always contain webhook for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on