{ "opencollection": "1.0.0", "info": { "name": "Notion Blocks Comments API", "version": "2022-06-28" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Comments", "type": "folder" }, "items": [ { "info": { "name": "Notion Retrieve comments", "type": "http" }, "http": { "method": "GET", "url": "https://api.notion.com/v1/comments", "headers": [ { "name": "Notion-Version", "value": "" } ], "params": [ { "name": "block_id", "value": "", "type": "query", "description": "The ID of the block or page to retrieve comments for." }, { "name": "start_cursor", "value": "", "type": "query", "description": "Pagination cursor to continue fetching results." }, { "name": "page_size", "value": "", "type": "query", "description": "Maximum number of comments to return (max 100)." } ] }, "docs": "Retrieves a list of unresolved comments from a page or block. Requires the integration to have read comment capabilities." }, { "info": { "name": "Notion Create a comment", "type": "http" }, "http": { "method": "POST", "url": "https://api.notion.com/v1/comments", "headers": [ { "name": "Notion-Version", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a comment on a page or in an existing discussion thread. The integration must have comment capabilities to use this endpoint." } ] } ], "bundled": true }