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

# Delete Tool

> Delete a tool from an agent



## OpenAPI

````yaml DELETE /agent/tool
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /agent/tool:
    delete:
      summary: Delete Tool
      description: Delete a tool from an agent
      requestBody:
        description: Tool ID to delete
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ToolDelete'
      responses:
        '200':
          description: Tool deleted successfully
        '400':
          description: Bad Request - Missing tool_id
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions (requires level 2)
        '404':
          description: Tool not found
      security:
        - CompanyApiKey: []
components:
  schemas:
    ToolDelete:
      type: object
      required:
        - tool_id
      properties:
        tool_id:
          type: string
          description: ID of the tool to delete
  securitySchemes:
    CompanyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Company API Key

````