Create App
Create app in workspace with fields
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_id | number | Required | Workspace to create app in |
name | string | Required | Name of the app |
item_name | string | Required | Name of records (e.g., "Contact", "Task") |
description | string | Optional | Description of the app |
fields | array | Optional | Array 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"
}'