- API
- Global constants
- Server Object
- 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
- Application
- ApplicationUserProfile
- ApplicationWithBatcher
- ApplicationWithParams
- BrandingSettings
- CompanyInfo
- Converter
- Directories
- Files
- HttpApiHandler
- HttpApiRequest
- ICache
- IStorage
- MailMessage
- Mailbox
- OrganisationStructure
- OrganisationStructureTree
- Portal
- PortalPageInfo
- PortalSettings
- Portals
- Process
- Processes
- ProductionSchedule
- Reminders
- Replacements
- ReplacementsRules
- Serial
- ServerCollection
- Service
- SignupUrlParams
- SystemCollections
- SystemCollectionsWithEvents
- SystemCollectionsWithFilterEvents
- SystemCollectionsWithVoip
- Templater
- Translator
- UserGroups
- Users
- Voip
- Watermarks
- Report
- Reports
- SR
- 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
- Activity stream metadata
Report a mistake
There is a mistake in the following text:
Feedback sent successfully
Thank you for your input
Server Object
Used for transparent interaction with server scripts. Example of calling a server method from the client:
await Server.rpc.doSomething();Calling server methods with arguments of the following types is supported:
boolean;number;string.Example of calling a server method with arguments from the client:async function doSomethingWithArgs (n: number, s: string[], b?: boolean): Promise<void> { // ... };For more information, see the help article [“Scripts in widgets”] (https://brix365.com/en/help/platform/client_server_scripts.html).await Server.rpc.doSomethingWithArgs(1, ['a', 'b', 'c'], true);Hierarchy
Properties
Readonly rpc
List of asynchronous functions in server scripts that match the signature:
(...args: any[]) => Promise<void>Example:
async function doSomething(): Promise<void> { // ... ... ... }Properties