googleDrive.createReply reply to a Drive comment.
Example
Inputs
ProvidefileId, commentId, and content. 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.
Reply to a Drive comment.
googleDrive.createReply reply to a Drive comment.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Create reply", () => {
onDashboardRun({ title: "Create reply" })
googleDrive.createReply({
fileId: "file-id",
commentId: "comment-id",
content: "Done.",
})
})
fileId, commentId, and content. A second argument with account selects a Google Account.