googleDrive.createComment add a comment to a Drive file.
Example
Inputs
ProvidefileId and content. anchor can attach provider-specific context. 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.
Add a comment to a Drive file.
googleDrive.createComment add a comment to a Drive file.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Create comment", () => {
onDashboardRun({ title: "Create comment" })
googleDrive.createComment({
fileId: "file-id",
content: "Please review this section.",
})
})
fileId and content. anchor can attach provider-specific context. A second argument with account selects a Google Account.