Skip to main content

deleteRemixAgent

client.agents.deleteRemixAgent(name: string): Promise<void>

Deletes a remix agent.

Permanently removes the specified remix agent from the system.

Parameters

ParameterTypeRequiredDescription
namestringYesThe name of the remix agent to delete

Returns

Promise<void> — A promise that resolves when the remix agent has been deleted

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.agents.deleteRemixAgent('name');
console.log(result);