***

title: delete
slug: /reference/typescript/rest/fabric/relay-applications/delete
description: Delete a RELAY application resource.
max-toc-depth: 3
---------------------

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

Delete a RELAY application resource.

<EndpointSchemaSnippet endpoint="DELETE /api/fabric/resources/relay_applications/{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.relayApplications.delete("resource-id");
console.log("Relay Application deleted");
```