Delete Record
Delete record (moves to trash)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
record_id | number | Required | The record to delete |
Examples
MCP Tool Call
{
"name": "tape_deleteRecord",
"arguments": {
"record_id": 12345
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/deleteRecord \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"record_id": 12345
}'