Skip to main content
DELETE
/
v1
/
instances
/
{instance_id}
/
skills
/
{skill_name}
curl -X DELETE https://api.chowder.dev/v1/instances/ins_abc123/skills/web-search \
  -H "Authorization: Bearer YOUR_API_KEY"
No Content
Uninstalls a skill from the instance. This removes the skill files and its configuration. If you just want to disable a skill without removing it, use the update config endpoint to set enabled: false instead.

Authentication

Requires an org-level API key or a scoped token with the configure permission.

Path Parameters

instance_id
string
required
The ID of the instance.
skill_name
string
required
The name of the skill to uninstall.

Response

Returns 204 No Content on success.
curl -X DELETE https://api.chowder.dev/v1/instances/ins_abc123/skills/web-search \
  -H "Authorization: Bearer YOUR_API_KEY"
No Content