Claude Platform Docs

Excluir versão de skill

$ ant beta:skills:versions delete
DELETE/v1/skills/{skill_id}/versions/{version}

Excluir versão de skill

Parameters
--skill-id: string

Path param: Unique identifier for the skill.

The format and length of IDs may change over time.

--version: string

Path param: Identifies the skill version by its version ID.

Requests carrying the skills-2025-10-02 beta header address versions by their Unix epoch timestamp instead (e.g., "1759178010641129").

--beta: optional array of AnthropicBeta

Header param: Optional header to specify the beta version(s) you want to use.

Returns
beta_deleted_skill_version: object{ id, type }
id: string

Unique identifier for this Skill Version. The id addresses the version in paths and pins it in references.

type: "skill_version_deleted"

Deleted object type.

For Skill Versions, this is always "skill_version_deleted".

Excluir versão de skill
ant beta:skills:versions delete \
  --api-key my-anthropic-api-key \
  --skill-id skill_id \
  --version version
Returns Examples
Response 200
{
  "id": "id",
  "type": "skill_version_deleted"
}