List Record Comments
List all comments on a specific record with pagination
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
record_id | number | Required | The record to list comments for |
limit | number | Optional | Max comments to return (default 30) |
cursor | string | Optional | Pagination cursor for next page |
Examples
MCP Tool Call
{
"name": "tape_listRecordComments",
"arguments": {
"record_id": 12345,
"limit": 12345,
"cursor": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/listRecordComments \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"record_id": 12345,
"limit": 12345,
"cursor": "example"
}'