cURL
curl --request PUT \ --url https://api.example.com/api/tools/{id}
Update an existing tool
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}" } }'
id