Create Record Comment
Create a comment on a specific record
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
record_id | number | Required | The record to comment on |
value | string | Required | Comment text content |
file_ids | array | Optional | Optional array of file IDs to attach |
silent | boolean | Optional | If true, no notifications will be sent (default false) |
hook | boolean | Optional | If 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
}'