Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X PUT https://app.openhome.com/api/capabilities/edit-installed-capability/456/ \ -H "X-API-KEY: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"enabled": true, "trigger_words": ["weather", "forecast"]}'
import requests requests.put( "https://app.openhome.com/api/capabilities/edit-installed-capability/456/", headers={"X-API-KEY": "YOUR_KEY"}, json={"enabled": True, "trigger_words": ["weather", "forecast"]}, )
Toggle an installed Ability on or off without deleting it.
true
false