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

# Delete a file

> Delete a previously uploaded entry from the spool.



## OpenAPI

````yaml DELETE /silo/v1/spool/{key}
openapi: 3.0.0
info:
  contact:
    email: dev@invopop.com
    name: Invopop Developers
  description: >-
    Store and manage GOBL documents along with their attachments in "Silo
    Entries".
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  title: Silo Service API
  version: 1.0.0
servers:
  - description: production
    url: https://api.invopop.com
security:
  - authToken: []
paths:
  /silo/v1/spool/{key}:
    delete:
      description: Delete a previously uploaded entry from the spool.
      parameters:
        - description: Key of the file provided during upload
          in: path
          name: key
          required: true
          schema:
            description: Key of the file provided during upload
            example: 2025-W20-123467abcde-invoice.xml
            title: Key
            type: string
      responses:
        '204':
          description: No Content
components:
  securitySchemes:
    authToken:
      bearerFormat: JWT
      description: >-
        Use the `Bearer` scheme with a valid JWT token to authenticate requests.
        Example: `Authorization: Bearer <token>`
      scheme: bearer
      type: http

````