Create Record
Create record in app with field values
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to create in |
fields | object | Required | Field values (field_id: {value: ...}) |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
id_only | boolean | Optional | Return only record_id (default: true to save context) |
Examples
MCP Tool Call
{
"name": "tape_createRecord",
"arguments": {
"app_id": 12345,
"fields": "example",
"id_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/createRecord \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"fields": "example",
"id_only": true
}'