Skip to main content
PUT
/
v1
/
agents
/
{agent_id}
/
platform-tools
Set an agent's enabled platform tools
curl --request PUT \
  --url https://api-sandbox.featherhq.com/v1/agents/{agent_id}/platform-tools \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "platform_tools": {}
}
'
{
  "platform_tools": {}
}

Authorizations

x-api-key
string
header
required

Path Parameters

agent_id
string<uuid>
required

Body

application/json

Full-replace of an agent's enabled platform tools.

platform_tools is the complete enabled map — {toolName: {…config…}} (an empty object value = enabled with no per-tool config). Every key is validated against the hard-coded platform-tool registry; an unknown name is rejected. Send {} to disable all.

platform_tools
Platform Tools · object

Response

Successful Response

platform_tools
Platform Tools · object