Claude Platform Docs

Skill löschen

$client->skills->delete(string skillID, ?string workspaceID): DeletedSkill
DELETE/v1/skills/{skill_id}

Skill löschen

Parameters
skillID: string

Unique identifier for the skill.

The format and length of IDs may change over time.

workspaceID?:optional string
Returns
class DeletedSkill { $type = 'skill_deleted'; $id; }
"skill_deleted" type

Deleted object type.

For Skills, this is always "skill_deleted".

string id

Unique identifier for the skill.

The format and length of IDs may change over time.

Skill löschen
<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'my-anthropic-api-key');

$deletedSkill = $client->skills->delete(
  'skill_id', workspaceID: 'wrkspc_011CZkZaBF1tNoB5wlCeusgy'
);

var_dump($deletedSkill);
Returns Examples
Response 200
{
  "id": "skill_01JAbcdefghijklmnopqrstuvw",
  "type": "skill_deleted"
}