Claude Platform Docs

Skill-Version löschen

DeletedSkillVersion Skills.Versions.Delete(parameters, cancellationToken = default)
DELETE/v1/skills/{skill_id}/versions/{version}

Skill-Version löschen

Parameters
VersionDeleteParams parameters
required string skillID

Path param: Unique identifier for the skill.

The format and length of IDs may change over time.

required string version

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").

string workspaceID

Header param: 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
class DeletedSkillVersion { Type = "skill_version_deleted"; ID; }
JsonElement Type = "skill_version_deleted"

Deleted object type.

For Skill Versions, this is always "skill_version_deleted".

required string ID

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

Skill-Version löschen
VersionDeleteParams parameters = new()
{
    SkillID = "skill_id",
    Version = "version",
};

var deletedSkillVersion = await client.Skills.Versions.Delete(parameters);

Console.WriteLine(deletedSkillVersion);
Returns Examples
Response 200
{
  "id": "id",
  "type": "skill_version_deleted"
}