googleDrive.updateReply replace a Drive comment reply’s content.
Example
Inputs
ProvidefileId, commentId, replyId, 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.
Replace a Drive comment reply’s content.
googleDrive.updateReply replace a Drive comment reply’s content.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Update reply", () => {
onDashboardRun({ title: "Update reply" })
googleDrive.updateReply({
fileId: "file-id",
commentId: "comment-id",
replyId: "reply-id",
content: "Updated.",
})
})
fileId, commentId, replyId, and content. A second argument with account selects a Google Account.