Google Drive
GOOGLEDRIVE_CREATE_FOLDER
Creates a new folder in google drive, optionally within a parent folder specified by its id or name; if a parent name is provided but not found, the action will fail.
Remote googledrive
Other tools also called GOOGLEDRIVE_CREATE_FOLDER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"parent_id": {
"type": "string",
"title": "Parent Id",
"default": null,
"examples": [
"0AGr3s6kL3rIuUk9PVA",
"Existing Parent Folder Name",
"1A2b3C4d5E6fG7h8I9j0KlMNOPqRstUVW"
],
"nullable": true,
"description": "ID or name of the parent folder. If a name is provided, the action attempts to find it. If an ID is provided, it must be a valid Google Drive folder ID. If omitted, the folder is created in the Drive root."
},
"folder_name": {
"type": "string",
"title": "Folder Name",
"examples": [
"Project Files",
"Documents",
"Reports"
],
"description": "Name for the new folder."
}
}
}