REST ClientFabricAI AgentsdeleteCopy page|View as Markdown|Open in Claude|More actionsDelete an AI agent resource. Path parametersidstringRequiredformat: "uuid"Unique ID of an AI Agent.Response Example 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.aiAgents.delete("agent-id");console.log("AI Agent deleted");