Create App

Create app in workspace with fields

Parameters

ParameterTypeRequiredDescription
workspace_idnumberRequiredWorkspace to create app in
namestringRequiredName of the app
item_namestringRequiredName of records (e.g., "Contact", "Task")
descriptionstringOptionalDescription of the app
fieldsarrayOptionalArray of field configs. Each needs field_type and config.label. Use searchDocs for field types.

Examples

MCP Tool Call

{
  "name": "tape_createApp",
  "arguments": {
    "workspace_id": 12345,
    "name": "example",
    "item_name": "example",
    "description": "example",
    "fields": "example"
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/createApp \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "workspace_id": 12345,
  "name": "example",
  "item_name": "example",
  "description": "example",
  "fields": "example"
}'