Create Record Comment

Create a comment on a specific record

Parameters

ParameterTypeRequiredDescription
record_idnumberRequiredThe record to comment on
valuestringRequiredComment text content
file_idsarrayOptionalOptional array of file IDs to attach
silentbooleanOptionalIf true, no notifications will be sent (default false)
hookbooleanOptionalIf false, webhooks will not be triggered (default true)

Examples

MCP Tool Call

{
  "name": "tape_createRecordComment",
  "arguments": {
    "record_id": 12345,
    "value": "example",
    "file_ids": "example",
    "silent": true,
    "hook": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/createRecordComment \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "record_id": 12345,
  "value": "example",
  "file_ids": "example",
  "silent": true,
  "hook": true
}'