comment
Add or retrieve comments on any Notion page by ID, URL, or name. Include body text to post a comment; omit it to get all existing comments as a Markdown list.
Instructions
Add or read comments on a Notion page.
Read comments
comment({ page: "abc123" }) Returns all comments on the page as a Markdown list.
Add a comment
comment({ page: "abc123", body: "Looks good! Ready to ship." }) Adds a comment to the page.
You can use the page name, ID, or URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Comment text to add. If omitted, existing comments are returned instead. | |
| page | Yes | Page ID, URL, or name |