delete

View as MarkdownOpen in Claude

Delete an AI agent resource.

Path parameters

idstringRequiredformat: "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");