Skip to main content
PUT
/
api
/
tools
/
{tool_id}
Update Tool
curl --request PUT \
  --url https://api.example.com/api/tools/{tool_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "tool_name": "<string>",
  "tool_description": "<string>",
  "webhook_url": "<string>",
  "http_method": "<string>",
  "timeout_seconds": 123,
  "headers": {},
  "parameters": [
    {}
  ]
}
'
{
  "success": true,
  "tool": {}
}
Update an existing tool configuration.
tool_id
string
required
The unique identifier of the tool.
tool_name
string
New name for the tool.
tool_description
string
New description.
webhook_url
string
New webhook URL.
http_method
string
New HTTP method.
timeout_seconds
integer
New timeout limit.
headers
object
New headers.
parameters
array
New list of parameters.

Response

success
boolean
Indicates success.
tool
object
The updated tool object.