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.
Restore a soft-deleted uploaded file
| Field | Value |
|---|
| Name | restore_upload |
| Group | Uploads |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"upload_id": {
"type": "string",
"description": "Upload ID to restore"
}
},
"required": [
"project_reference",
"upload_id"
],
"additionalProperties": false,
"description": "Input schema for the restore_upload tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"restored": {
"type": "boolean",
"description": "The restored associated with this tool result."
}
},
"required": [
"id",
"restored"
],
"additionalProperties": false,
"description": "Structured result returned by the restore_upload tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}