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

# Delete Company

> Deletes a specific company from the system using its unique identifier.



## OpenAPI

````yaml DELETE /public/companies/{company_id}
openapi: 3.0.3
info:
  title: RevyOps API
  version: 1.0.0
servers: []
security: []
paths:
  /public/companies/{company_id}:
    delete:
      tags:
        - public
      description: Deletes a specific company from the system using its unique identifier.
      operationId: Remove company
      parameters:
        - in: path
          name: company_id
          schema:
            type: integer
          required: true
      responses:
        '200':
          description: OK. The company was successfully deleted.
        '401':
          description: >-
            Unauthorized. The company does not belong to the authenticated
            client's API key.
        '403':
          description: Forbidden. Missing authentication credentials or invalid API key.
        '404':
          description: Not Found. No company with the specified ID exists.
        '500':
          description: Internal Server Error. An unexpected error occurred on the server.

````