Skip to main content
PUT
/
api
/
hyper-ai
/
tools
/
{tool_name}
/
config
cURL
curl --request PUT \
  --url https://api.production.hyperoru.com/api/hyper-ai/tools/{tool_name}/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "config": {},
  "tool_id": "<string>"
}
'
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Path Parameters

tool_name
string
required

Tool name

Body

application/json

Save tool config request.

config
object
required
tool_id
string
required

Response

Tool configuration saved

Generic { "status": "success", "message": "..." } ack used by handlers whose primary purpose is side effects (toggles, deletes, async starts).

status
string
required
Example:

"success"

message
string | null