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

# Delete File

> Delete a file from the media library

<Warning>
  **Not available yet.** The app-scoped Files API (`/api/v1/files*`) is not
  implemented — calls will 404. `read_files` / `write_files` are reserved scopes
  (requestable for forward-compat) with no endpoints bound yet. The shape below
  is the planned contract and may change.
</Warning>

## Path Parameters

<ParamField path="file_id" type="string" required>
  The file ID to delete
</ParamField>

## Response

The planned contract returns the standard response envelope. Delete responses
carry the outcome under `message` with no `data` payload.

<ResponseExample>
  ```json theme={null}
  {
    "status": 200,
    "state": "success",
    "message": "File deleted successfully",
    "data": null
  }
  ```
</ResponseExample>

<Warning>
  Deleting a file will remove it from any products, collections, or pages where it's used.
</Warning>
