List Record Comments

List all comments on a specific record with pagination

Parameters

ParameterTypeRequiredDescription
record_idnumberRequiredThe record to list comments for
limitnumberOptionalMax comments to return (default 30)
cursorstringOptionalPagination 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"
}'