> ## 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 Find Moments Run

> Deletes the run and its moments and findings. An in-flight run is cancelled and refunded; a completed run is not refunded.



## OpenAPI

````yaml DELETE /find-moments/{job_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.23
servers:
  - url: https://api.cloudglue.dev/v1
security:
  - bearerAuth: []
paths:
  /find-moments/{job_id}:
    delete:
      tags:
        - Find Moments
      summary: Delete a find-moments run
      description: >-
        Deletes the run and its moments and findings. An in-flight run is
        cancelled and refunded; a completed run is not refunded.
      operationId: deleteFindMoments
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteFindMomentsResult'
        '404':
          description: Run not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeleteFindMomentsResult:
      type: object
      properties:
        job_id:
          type: string
          format: uuid
        deleted:
          type: boolean
        refunded:
          type: boolean
          description: True when the run was in flight and its charge was refunded.
      required:
        - job_id
        - deleted
        - refunded
    Error:
      required:
        - error
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````