- API
- Company configuration metadata
- Service for retrieving app information
- Getting started [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type -
Getting started with the
Category data type - Dynamic event type calculation
- Typical use cases
-
API
- Object types
- Data types
- Global constants
- Work with apps
- Web requests
- Access permissions
- Document flow
- Live Chats
- “Code” widget
- Signatures
- Business calendars
- Integration with IP telephony
- Integration with email marketing services
-
Company configuration metadata
- ApplicationScheme
- ApplicationSchemeForms
- ApplicationSchemeFormsCreateForm
- ApplicationSchemeFormsDetailForm
- ApplicationSchemeFormsEditForm
- ApplicationSchemeFormsField
- ApplicationSchemeFormsMassEditForm
- ApplicationSchemeFormsTileForm
- ApplicationSchemeFormsViewForm
- ApplicationSchemeParams
- ApplicationSchemePermissionSettings
- ApplicationSchemeService
- BaseApplicationScheme
- BaseNamespaceScheme
- BasePageScheme
- FieldScheme
- FieldSchemeEnumData
- FieldSchemeEnumDataEnumItem
- FieldSchemeService
- FieldSchemeSysCollectionData
- FieldSchemeTableData
- FieldSchemeTableDataField
- FieldSchemeTableDataFieldView
- FieldSchemeView
- NamespaceScheme
- NamespaceSchemeParams
- NamespaceSchemeParamsField
- NamespaceSchemeParamsFieldFieldView
- NamespaceSchemeService
- PageScheme
- PageSchemeService
- PermissionsScheme
- PermissionsSchemeValue
- PermissionsSchemeValueOrgUnit
- SchemeService
- ApplicationSchemePermissionSettingsType
- FieldSchemeType
- PageSchemeType
- PermissionsSchemeValueOrgUnitType
- PermissionsSchemeValueType
- ApplicationSchemePermissionSettingsType
- FieldSchemeType
- PageSchemeType
- PermissionsSchemeValueOrgUnitType
- PermissionsSchemeValueType
Report a mistake
There is a mistake in the following text:
Feedback sent successfully
Thank you for your input
Service for retrieving app information
Hierarchy
Methods
exportable
Get exported app indicator.
Parameters
namespace: string
code: string
Returns Promise<boolean>
The value
truemeans the app is exported,falsemeans it is not exported.const exportable = await System.scheme.application.exportable('crm', 'clients');get
Retrieve app information by code and namespace.
Parameters
namespace: string
code: string
Returns Promise<ApplicationScheme | undefined>
Object with information about an app.
const appScheme = await System.scheme.application.get('clients', 'crm');list
Get a list of apps in a workspace.
Parameters
namespace: string
Returns Promise<readonly BaseApplicationScheme[]>
Array of objects with infromation about apps.
const apps = await System.scheme.application.list('crm');Methods