Get App
Get app with fields and configuration
Parameters
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
app_id | number | Required | The app ID to retrieve | |
include_fields | boolean | Optional | Include fields array (default true). Set false for summary only. | |
field_type_filter | string | Optional | Filter fields: "all" (default), "basic" (non-calculation), "calculation" (only calculation) | allbasiccalculation |
fields_limit | number | Optional | Max fields to return (pagination) | |
fields_offset | number | Optional | Fields to skip (pagination) |
Examples
MCP Tool Call
{
"name": "tape_getApp",
"arguments": {
"app_id": 12345,
"include_fields": true,
"field_type_filter": "example",
"fields_limit": 12345,
"fields_offset": 12345,
"fields_summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/getApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"include_fields": true,
"field_type_filter": "example",
"fields_limit": 12345,
"fields_offset": 12345,
"fields_summary_only": true
}'