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

# Delete Title Entry

> This endpoint deletes a title entry and any related entries



## OpenAPI

````yaml DELETE /title/{id}
openapi: 3.0.1
info:
  title: Cardinal Gray OpenAPI
  description: OpenAPI for automating vehicle title work
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://dev.cardinalgray.com
    description: Development
  - url: https://api.cardinalgray.com
    description: Production
security:
  - bearerAuth: []
paths:
  /title/{id}:
    delete:
      summary: Delete a title entry
      description: >-
        Permanently deletes a title entry and all associated duplicate entries.
        This operation automatically handles cleanup of related entries that
        reference the deleted entry via existingEntryId.
      parameters:
        - $ref: '#/components/parameters/id'
      responses:
        '200':
          description: Title entry and related entries deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    description: HTTP status code (200 for successful deletion)
                    example: 200
                  message:
                    type: string
                    description: Confirmation message indicating successful deletion
                    example: Entries deleted successfully
                  entryId:
                    type: string
                    description: The ID of the primary deleted entry
                    format: uuid
                    example: 550e8400-e29b-41d4-a716-446655440000
                  deletedCount:
                    type: integer
                    description: Total number of entries deleted (including duplicates)
                    example: 3
        '400':
          $ref: '#/components/responses/BadRequest'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - bearerAuth: []
components:
  parameters:
    id:
      name: id
      in: path
      required: true
      schema:
        type: string
      description: Unique identifier of the title entry
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
  schemas:
    Response:
      type: object
      properties:
        error:
          type: string
          description: Error message
        statusCode:
          type: number
          description: HTTP status code
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````