Skip to content
Get started

Delete a tool set

client.toolSets.delete(stringid, RequestOptionsoptions?): void
DELETE/v1/tool_sets/{id}

Deletes a tool set in the workspace

ParametersExpand Collapse
id: string

Delete a tool set

import Cadenya from '@cadenya/cadenya';

const client = new Cadenya({
  apiKey: process.env['CADENYA_API_KEY'], // This is the default and can be omitted
});

await client.toolSets.delete('id');
Returns Examples