googleDrive.getReply read one reply on a Drive comment.
Example
Inputs
ProvidefileId, commentId, and replyId. 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.
Read one reply on a Drive comment.
googleDrive.getReply read one reply on a Drive comment.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Get reply", () => {
onDashboardRun({ title: "Get reply" })
googleDrive.getReply({
fileId: "file-id",
commentId: "comment-id",
replyId: "reply-id",
})
})
fileId, commentId, and replyId. A second argument with account selects a Google Account.