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