Overview
Last updated 8/04/2026
Application Events
Application events provide a structured way to execute logic at key points in the lifecycle of the application itself. These events are executed at system-wide moments, such as when the application starts, a user log ins, or a user logs out, allowing you to control global behavior, perform initialization or cleanup, and manage application-level processes.
Events
| Event | Executes | Description |
|---|---|---|
| Do Start | Server | Executes when an application is started, effectively, deployed to the cloud. |
| Do Logon | Server | Executes when the Sign In button is clicked and before the application is loaded. |
| Do Logoff | Server | Executes when the Logout button is clicked. |
Order of Execution
Do Start
The Do Start event is a one-off event that executes the first time the application is deployed to each environment. It will not run again unless the application is removed and redeployed.
Do Logon
The Do Logon event executes each time the Sign In button is clicked, before the application loads for the user.
Do Logoff
The Do Logoff event executes last when the Logout button is clicked in the user's profile.