- Home [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 - Dynamic event type calculation
- 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
- Serial
- ServerCollection
- Service
- SignupUrlParams
- SystemCollections
- SystemCollectionsWithEvents
- SystemCollectionsWithFilterEvents
- Templater
- Translator
- UserGroups
- Users
- 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
Process object
This object is used to start processes and search for process instances or process tasks. The Process.run method starts a process. [[Process. _searchInstances]] searches for process instances. Process._searchTasks searches for process tasks. Example of starting a process:
await Global.ns._clients.app._leads.processes._call.run({})
Type parameters
Context: ProcessContext
Hierarchy
Properties
__name
Name of the process.
code
Code of the process template.
Readonly context Deprecated
Description of the process context.
The property is deprecated. Avoid using it.
namespace
Workspace of the process template.
Methods
_searchInstances
The method is used to search for process instances.
Example:
const instances = await Global.processes.my_process_1._searchInstances().all();
Returns ProcessInstanceSearch
Search object for processes.
_searchTasks
The method searches for process tasks based on specified conditions.
Example:
const tasks = await Global.processes.my_process_1._searchTasks().all();
Returns ProcessInstanceTaskSearch
Search object for tasks.
run
The method launches the execution of a process.
When you start a process, you need to set the context data. Process context stores the data that a process works with while it is executed. Example:
async function runProcess(): Promise<void> { // Writing the `my_process` business process to the `processTemplate` variable // to be able to start it later const processTemplate = Global.processes. my_process; // Getting a document’s number from the context const documentNumber = Context.data.documentNumber; // Getting the author’s name from the context const authorName = Context.data.authorName; // Loading data using a function const bytesContent = await downloadDocumentFile(); // Creating a temporary file in the system to add it to the process’s context const temprorayFile = await System.files .createTemporary('file.docx', bytesContent); // Starting the process using its input data as the argument // The data is defined by the context of the process // Data transmission format is an object that has field codes //as keys await processTemplate.run({ authorName: authorName, documentContent: temprorayFile, documentNumber: documentNumber, }); }
Parameters
context: Context
Returns Promise<TString>
ID of a launched process.
Properties
Methods