googleDrive.getComment read a Drive comment and its replies.
Example
Inputs
ProvidefileId and commentId. Deleted comments are included when Google retains their metadata. 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 a Drive comment and its replies.
googleDrive.getComment read a Drive comment and its replies.
import { automation, onDashboardRun } from "automate.ax"
import { googleDrive } from "automate.ax/google-drive"
export default automation("Get comment", () => {
onDashboardRun({ title: "Get comment" })
googleDrive.getComment({ fileId: "file-id", commentId: "comment-id" })
})
fileId and commentId. Deleted comments are included when Google retains their metadata. A second argument with account selects a Google Account.