スキルバージョンを削除
スキルバージョンを削除
Path parameters
skill_id: stringUnique identifier for the skill.
Unique identifier for the skill.
The format and length of IDs may change over time.
version: stringIdentifies the skill version by its version ID.
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").
Headers
"anthropic-beta": optional array of AnthropicBetaOptional header to specify the beta version(s) you want to use.
Optional header to specify the beta version(s) you want to use.
"message-batches-2024-09-24" or "prompt-caching-2024-07-31" or "computer-use-2024-10-22" or 45 more
"anthropic-workspace-id": optional stringOptional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.
Returns
BetaDeletedSkillVersion object{ type: "skill_version_deleted", id }
type: "skill_version_deleted"Deleted object type.
Deleted object type.
For Skill Versions, this is always "skill_version_deleted".
Unique identifier for this Skill Version. The id addresses the version in paths and pins it in references.
curl https://api.anthropic.com/v1/skills/$SKILL_ID/versions/$VERSION \
-X DELETE \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"{
"id": "id",
"type": "skill_version_deleted"
}Returns Examples
{
"id": "id",
"type": "skill_version_deleted"
}