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.
Remove a user’s access grant from a path. Requires admin grant on the path.
| Field | Value |
|---|
| Name | revoke_upload_grant |
| Group | Uploads |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"path": {
"type": "string",
"description": "Path prefix. Must be URL-encoded if it contains special characters or spaces."
},
"user_id": {
"type": "string",
"description": "User ID to remove"
}
},
"required": [
"project_reference",
"path",
"user_id"
],
"additionalProperties": false,
"description": "Input schema for the revoke_upload_grant tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"removed": {
"type": "boolean",
"description": "The removed associated with this tool result."
}
},
"required": [
"removed"
],
"additionalProperties": false,
"description": "Structured result returned by the revoke_upload_grant tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}