Delete Record Comment

Delete a comment from a record

Parameters

ParameterTypeRequiredDescription
comment_idnumberRequiredThe comment to delete
silentbooleanOptionalIf true, no notifications will be sent (default false)
hookbooleanOptionalIf false, webhooks will not be triggered (default true)

Examples

MCP Tool Call

{
  "name": "tape_deleteRecordComment",
  "arguments": {
    "comment_id": 12345,
    "silent": true,
    "hook": true
  }
}

REST API

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