Delete Record Comment
Delete a comment from a record
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
comment_id | number | Required | The comment to delete |
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_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
}'