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