skill_id: The Ejento id of the skill to remove.200 OK with the final skill snapshot and the deleted name.404 skill_not_found — no skill with this name exists.403 system_curated_immutable — skill is system-curated.403 permission_denied — caller lacks permission to manage skills.500 delete_partial — rare partial-failure where the skill was only partially removed. Retry the same DELETE call to finish cleanup; it is safe to call again.curl --location --globoff --request DELETE 'https:///skills-service/api/v2/skills/' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '{
"data": {
"skill": {
"category": "Engineering",
"created_by": "[email protected]",
"created_on": "2026-05-21T12:00:00Z",
"description": "My skill description.",
"id": 42,
"is_default": false,
"is_draft": false,
"is_enabled": true,
"modified_by": "[email protected]",
"modified_on": "2026-05-21T12:00:00Z",
"name": "my-skill",
"org_id": 7,
"type": "bundle"
},
"skill_name": "my-skill"
},
"message": "Skill 'my-skill' deleted",
"success": true
}