Get Record Comments
kintone-get-record-commentsRetrieve comments posted on a specific kintone record. Supports pagination with offset to access up to 10 comments per call, and sort order by creation date.
Instructions
Get comments posted on a single kintone record. The kintone API returns comments for one record at a time; to fetch comments for multiple records, call this tool repeatedly. Up to 10 comments are returned per call; use offset to paginate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | The ID of the app that contains the record (numeric value as string) | |
| record | Yes | The ID of the record to retrieve comments from | |
| order | No | Sort order of comments by createdAt. 'asc' = oldest first, 'desc' = newest first (default: desc) | |
| limit | No | Maximum number of comments to retrieve (1-10, default: 10 by kintone API) | |
| offset | No | Number of comments to skip (default: 0) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comments | Yes | Array of comments on the record | |
| older | Yes | Whether there are older comments beyond this page | |
| newer | Yes | Whether there are newer comments beyond this page |