Skip to main content
DELETE
/
api
/
v2
/
skills
/
{name}
Delete a skill
curl --request DELETE \
  --url https://agp.eu.hcompany.ai/api/v2/skills/{name} \
  --header 'Authorization: Bearer <token>'
Removes a skill from your catalog. Agents that reference this skill will no longer have access to it in future sessions. Returns 204 No Content on success.

Path parameters

name
string
required
The skill’s name (e.g. extract-table-data or myorg/web-helper). Slash-containing names are supported.

Examples

curl -X DELETE https://agp.eu.hcompany.ai/api/v2/skills/extract-table-data \
  -H "Authorization: Bearer $H_API_KEY"

Errors

StatusCause
403The skill is reserved (h/) and you are not an H employee.
404Skill not found or you don’t have access.