Skip to main content
PUT
/
api
/
tools
/
{id}
Update Tool
curl --request PUT \
  --url https://api.example.com/api/tools/{id}

Request

curl -X PUT "https://app.orova.ai/api/tools/TOOL_ID" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Check Order Status v2",
    "description": "Updated description",
    "config": {
      "method": "GET",
      "url": "https://api.yourcompany.com/v2/orders/{order_id}"
    }
  }'

Path parameters

ParameterTypeDescription
idstringTool ID

Body parameters

All fields from Create Tool are accepted. Only include the fields you want to update.

Response

Returns the updated tool object.