Batch Update Records

Update up to 50 records in one transaction

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredApp ID
updatesarrayRequiredArray of {record_id, fields} objects (max 50)

Examples

MCP Tool Call

{
  "name": "tape_batchUpdateRecords",
  "arguments": {
    "app_id": 12345,
    "updates": "example",
    "summary_only": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/batchUpdateRecords \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "updates": "example",
  "summary_only": true
}'