delete
Delete a Fabric resource.
Path parameters
id
Unique ID of a Resource.
Delete a Fabric resource.
format: "uuid"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.resources.delete("resource-id");console.log("Resource deleted");