The whole hunk
from line 106, old and new numbered
/
lines
from line 106
106106
107107## Returns
108108
109- `id: string`
109- `BetaDeletedSkill object`
110110
111 Unique identifier for the skill.
111 - `id: string`
112112
113 The format and length of IDs may change over time.
113 Unique identifier for the skill.
114114
115- `type: string`
115 The format and length of IDs may change over time.
116116
117 Deleted object type.
117 - `type: "skill_deleted"`
118118
119 For Skills, this is always `"skill_deleted"`.
119 Deleted object type.
120120
121 default: skill_deleted
121 For Skills, this is always `"skill_deleted"`.
122122
123 default: skill_deleted
124
123125## Example
124126
125127```bash
from line 128
126128curl https://api.anthropic.com/v1/skills/$SKILL_ID \
127129 -X DELETE \
128130 -H 'anthropic-version: 2023-06-01' \
129 -H 'anthropic-beta: skills-2025-10-02' \
130131 -H "X-Api-Key: $ANTHROPIC_API_KEY"
131132```
132133
from line 136
135136```json
136137{
137138 "id": "skill_01JAbcdefghijklmnopqrstuvw",
138 "type": "type"
139 "type": "skill_deleted"
139140}
140141```
141142