notion.getComment retrieve a Notion comment by ID.
Example
automations/notion-get-comment.automation.ts
Inputs
comment_id is required. Every input accepts a compatible signal, and an optional second argument can select a named account.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Notion comment by ID.
notion.getComment retrieve a Notion comment by ID.
import { automation, onSchedule } from "automate.ax"
import { notion } from "automate.ax/notion"
export default automation("Get Notion comment", () => {
onSchedule({ schedule: "0 9 * * *" })
notion.getComment({ comment_id: "comment-id" })
})
comment_id is required. Every input accepts a compatible signal, and an optional second argument can select a named account.