> ## 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.

# Supprimer un outil

> Supprimer un outil

## Requête

```bash theme={null}
curl -X DELETE "https://app.orova.ai/api/tools/TOOL_ID" \
  -H "x-api-key: YOUR_API_KEY"
```

## Paramètres de chemin

| Paramètre | Type   | Description   |
| --------- | ------ | ------------- |
| `id`      | string | ID de l'outil |

## Réponse

```json theme={null}
{
  "message": "Tool deleted successfully"
}
```

<Warning>
  La suppression d'un outil le retire de tous les agents auxquels il est assigné. Assurez-vous qu'aucun agent actif n'en dépend avant de le supprimer.
</Warning>
