curl --request PUT \
--url https://api.yourapp.com/api/tools/tool_123 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"toolId": "tool_123",
"tool": {
"name": "Advanced Data Validator",
"description": "Validates and sanitizes input data",
"dependencies": ["lodash", "validator", "sanitize-html"]
}
}'