Create Record

Create record in app with field values

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app to create in
fieldsobjectRequiredField values (field_id: {value: ...})

Optional Flags

ParameterTypeRequiredDescription
id_onlybooleanOptionalReturn 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
}'