Get Record Revision Delta
Get field changes between revisions
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
record_id | number | Required | The record |
to_revision_id | number | Required | The revision to compare to |
Examples
MCP Tool Call
{
"name": "tape_getRecordRevisionDelta",
"arguments": {
"record_id": 12345,
"to_revision_id": 12345
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/getRecordRevisionDelta \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"record_id": 12345,
"to_revision_id": 12345
}'