Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Delete an uploaded file (soft delete). The file can be restored within the retention period.

Tool details

FieldValue
Namedelete_upload
GroupUploads

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "file_path": {
      "type": "string",
      "description": "File path to delete. Must be URL-encoded if it contains special characters or spaces."
    },
    "confirm": {
      "type": "boolean",
      "description": "Must be true to confirm deletion"
    }
  },
  "required": [
    "project_reference",
    "file_path",
    "confirm"
  ],
  "additionalProperties": false,
  "description": "Input schema for the delete_upload tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "deleted": {
      "type": "boolean",
      "description": "The deleted associated with this tool result."
    }
  },
  "required": [
    "id",
    "deleted"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the delete_upload tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}