Get Record Revision Delta

Get field changes between revisions

Parameters

ParameterTypeRequiredDescription
record_idnumberRequiredThe record
to_revision_idnumberRequiredThe 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
}'