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

# Delete Deep Search

> Delete a deep search by ID. This operation is idempotent - deleting a non-existent deep search returns success.



## OpenAPI

````yaml DELETE /deepSearch/{id}
openapi: 3.0.0
info:
  title: Cloudglue API
  description: API for Cloudglue
  license:
    name: Apache License 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: 0.7.13
servers:
  - url: https://api.cloudglue.dev/v1
security:
  - bearerAuth: []
paths:
  /deepSearch/{id}:
    delete:
      tags:
        - Deep Search
      summary: Delete a deep search
      description: >-
        Delete a deep search by ID. This operation is idempotent - deleting a
        non-existent deep search returns success.
      operationId: deleteDeepSearch
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the deep search to delete
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Deep search deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteDeepSearchResult'
        '500':
          description: An unexpected error occurred on the server
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeleteDeepSearchResult:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: ID of the deleted deep search
        object:
          type: string
          enum:
            - deep_search
          description: Object type identifier
        deleted:
          type: boolean
          enum:
            - true
          description: Indicates successful deletion
    Error:
      required:
        - error
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````