***

title: delete
slug: /reference/typescript/rest/fabric/swml-webhooks/delete
description: Delete a SWML webhook resource.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a SWML webhook resource.

<EndpointSchemaSnippet endpoint="DELETE /api/fabric/resources/swml_webhooks/{id}" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

await client.fabric.swmlWebhooks.delete("webhook-id");
console.log("Swml Webhook deleted");
```