Batch Create Records

Create up to 50 records in one transaction

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredApp ID
inputsarrayRequiredArray of {fields: {...}} objects (max 50)
silentbooleanOptionalSuppress notifications
hookbooleanOptionalExecute webhooks (default: true)
workflowbooleanOptionalTrigger workflows (default: true)

Examples

MCP Tool Call

{
  "name": "tape_batchCreateRecords",
  "arguments": {
    "app_id": 12345,
    "inputs": "example",
    "silent": true,
    "hook": true,
    "workflow": true,
    "summary_only": true
  }
}

REST API

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