Delete Skill
client.beta.skills.delete(stringskillID, SkillDeleteParams { betas } params?, RequestOptionsoptions?): SkillDeleteResponse { id, type }
/v1/skills/{skill_id}?beta=true
Delete Skill
Parameters
skillID: string
Unique identifier for the skill.
The format and length of IDs may change over time.
Returns
Delete Skill
TypeScript
import Anthropic from '@anthropic-ai/sdk';
const client = new Anthropic({
apiKey: 'my-anthropic-api-key',
});
const skill = await client.beta.skills.delete('skill_id');
console.log(skill.id);{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type"
}Returns Examples
{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type"
}