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

# Delete deliverable

> Deletes a file by its ID after ensuring ownership via `x-store-id`. This action is irreversible and should be used with caution. It checks if the file exists and belongs to the correct store before deletion.



## OpenAPI

````yaml delete /deliverables/{id}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /deliverables/{id}:
    delete:
      tags:
        - Deliverables
      summary: Delete deliverable
      description: >-
        Deletes a file by its ID after ensuring ownership via `x-store-id`. This
        action is irreversible and should be used with caution. It checks if the
        file exists and belongs to the correct store before deletion.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: File deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileDeleteResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    FileDeleteResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            deleted:
              type: boolean

````