- API
- Company configuration metadata
- Service for retrieving workspace 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],[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
- BaseModuleScheme
- BaseNamespaceScheme
- BasePageScheme
- BaseProcessTemplateScheme
- BaseSolutionScheme
- FieldScheme
- FieldSchemeAccountViewData
- FieldSchemeBooleanViewData
- FieldSchemeCategoryData
- FieldSchemeDateTimeViewData
- FieldSchemeEmailViewData
- FieldSchemeEnumData
- FieldSchemeEnumDataEnumItem
- FieldSchemeLinkViewData
- FieldSchemeMoneyViewData
- FieldSchemePhoneViewData
- FieldSchemeService
- FieldSchemeStringData
- FieldSchemeStringDataMask
- FieldSchemeStringViewData
- FieldSchemeSysCollectionData
- FieldSchemeTableData
- FieldSchemeTableDataField
- FieldSchemeTableDataFieldView
- FieldSchemeView
- ModuleScheme
- ModuleSchemeService
- NamespaceScheme
- NamespaceSchemeParams
- NamespaceSchemeParamsField
- NamespaceSchemeParamsFieldFieldView
- NamespaceSchemeService
- PageScheme
- PageSchemeService
- PermissionsScheme
- PermissionsSchemeValue
- PermissionsSchemeValueOrgUnit
- ProcessTemplateScheme
- ProcessTemplateSchemeItem
- ProcessTemplateSchemeItemSettings
- ProcessTemplateSchemeItemSettingsFormField
- ProcessTemplateSchemeProcess
- ProcessTemplateSchemeService
- SchemeService
- SolutionScheme
- SolutionSchemeItem
- SolutionSchemeService
- ApplicationSchemePermissionSettingsType
- FieldSchemeAccountViewDataType
- FieldSchemeDateTimeViewDataAdditionalType
- FieldSchemeDateTimeViewDataDefaultTime
- FieldSchemeEmailViewDataType
- FieldSchemePhoneViewDataType
- FieldSchemeStringViewDataAdditionalType
- FieldSchemeType
- PageSchemeType
- PermissionsSchemeValueOrgUnitType
- PermissionsSchemeValueType
- SolutionSchemeItemKind
- ApplicationSchemePermissionSettingsType
- FieldSchemeAccountViewDataType
- FieldSchemeDateTimeViewDataAdditionalType
- FieldSchemeDateTimeViewDataDefaultTime
- FieldSchemeEmailViewDataType
- FieldSchemePhoneViewDataType
- FieldSchemeStringViewDataAdditionalType
- FieldSchemeType
- PageSchemeType
- PermissionsSchemeValueOrgUnitType
- PermissionsSchemeValueType
- SolutionSchemeItemKind
- Метаданные ленты
Report a mistake
There is a mistake in the following text:
Feedback sent successfully
Thank you for your input
Service for retrieving workspace information
Allows retrieving information about app workspaces (namespaces).
Hierarchy
Methods
exportable
Get the exportability attribute of the workspace.
Parameters
namespace: string
Returns Promise<boolean>
If
true, the workspace is exported. Iffalse, the workspace is not exported.const exportable = await System.scheme.namespace. exportable('crm');get
Retrieve workspace information by its code.
Parameters
namespace: string
Returns Promise<NamespaceScheme | undefined>
Object with information about a workspace.
const namespaceScheme = await System.scheme.namespace.get('crm');list
Get a list of all workspaces.
Returns Promise<readonly BaseNamespaceScheme[]>
Array of objects with information about workspaces.
const namespaces = await System.scheme.namespace.list();Methods