Get Record Comment

Get details of a specific comment

Parameters

ParameterTypeRequiredDescription
comment_idnumberRequiredThe comment to retrieve

Examples

MCP Tool Call

{
  "name": "tape_getRecordComment",
  "arguments": {
    "comment_id": 12345
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/getRecordComment \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "comment_id": 12345
}'