> ## 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 Agency Company

> Delete a company. Note: Requires Agency API Key.



## OpenAPI

````yaml DELETE /agency/company/{company_id}
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:
  /agency/company/{company_id}:
    delete:
      summary: Delete Agency Company
      description: 'Delete a company. Note: Requires Agency API Key.'
      parameters:
        - name: company_id
          in: path
          description: The ID of the company to delete
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Company deleted successfully
        '401':
          description: Unauthorized - Invalid or missing agency API key
        '403':
          description: Forbidden - Requires agency admin access
        '404':
          description: Company not found
      security:
        - AgencyApiKey: []
components:
  securitySchemes:
    AgencyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Agency API Key

````