list_docs_in_folder
Retrieve a formatted list of Google Docs within a specific Drive folder. Specify user email, folder ID, and page size for precise results.
Instructions
Lists Google Docs within a specific Drive folder.
Returns: str: A formatted list of Google Docs in the specified folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | No | root | |
page_size | No | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"default": "root",
"title": "Folder Id",
"type": "string"
},
"page_size": {
"default": 100,
"title": "Page Size",
"type": "integer"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email"
],
"type": "object"
}