Batch Create Records
Create up to 50 records in one transaction
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
inputs | array | Required | Array of {fields: {...}} objects (max 50) |
silent | boolean | Optional | Suppress notifications |
hook | boolean | Optional | Execute webhooks (default: true) |
workflow | boolean | Optional | Trigger 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
}'