> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orova.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Tool

> Update an existing tool

## Request

```bash theme={null}
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

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| `id`      | string | Tool ID     |

## Body parameters

All fields from [Create Tool](/api-reference/tools/create) are accepted. Only include the fields you want to update.

## Response

Returns the updated tool object.
