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

# Delete company verification

> Delete a company verification created by the current API key. The `id` path can be either the internal company verification ID or the public company verification ID.



## OpenAPI

````yaml /api-reference/openapi.json delete /v1/company-verifications/{id}
openapi: 3.0.0
info:
  title: Helium Id Public API v1
  version: 1.0.0
  description: API reference for Helium ID public verification endpoints.
servers:
  - url: https://server.heliumid.io/api
security:
  - ApiKeyAuth: []
paths:
  /v1/company-verifications/{id}:
    parameters:
      - $ref: '#/components/parameters/CompanyVerificationId'
    delete:
      summary: Delete company verification
      description: >-
        Delete a company verification created by the current API key. The `id`
        path can be either the internal company verification ID or the public
        company verification ID.
      responses:
        '200':
          description: Company verification deleted successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelopeDeleteCompanyVerification'
              example:
                status: true
                message: Company verification deleted
                data: null
                code: 200
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    CompanyVerificationId:
      name: id
      in: path
      required: true
      description: >-
        The internal company verification ID or the public company verification
        ID returned as `verificationId` when the session was created.
      schema:
        type: string
      example: cv_0b5f6f4e0aab25d8c130ab21
  schemas:
    SuccessEnvelopeDeleteCompanyVerification:
      type: object
      properties:
        status:
          type: boolean
          example: true
        message:
          type: string
          example: Company verification deleted
        data:
          nullable: true
          example: null
        code:
          type: integer
          example: 200
    ErrorResponse:
      type: object
      properties:
        status:
          type: boolean
          example: false
        message:
          type: string
        error:
          type: object
          nullable: true
          additionalProperties: true
        data:
          nullable: true
        code:
          type: integer
  responses:
    BadRequest:
      description: The request payload, identifier, or state transition is invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            status: false
            message: Verification not found or has been deleted
            code: 400
    Unauthorized:
      description: The request could not be authenticated with the supplied API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            status: false
            message: Unauthorized
            code: 401
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Helium ID API key.

````