googleDrive.createFolder create a folder in My Drive or a shared drive.
Example
Inputs
Providename. parentId and description are optional. A second argument with account selects a Google Account.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a folder in My Drive or a shared drive.
googleDrive.createFolder create a folder in My Drive or a shared drive.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Create folder", () => {
onDashboardRun({ title: "Create folder" })
googleDrive.createFolder({ name: "Invoices", parentId: "folder-id" })
})
name. parentId and description are optional. A second argument with account selects a Google Account.