System expressions
In some cases you want to use properties like user details, current time and date or last modified by. BizzStream automatically stores these kinds of properties and you can use them in your process as well.
Expression | Description | Example |
---|---|---|
now | Gives the current time on the client. With the option addMinutes you can add a number of minutes to the time | {!system.now{"addMinutes":5}!} |
now | Gives the current time on the client. With the option addHours you can add a number of hours to the time | {!system.now{"addHours":12}!} |
today | Return the current date of the client. With the option addDays you can add a number off days to the date | {!system.today{"addDays":30}!} |
currentUser | Shows the username | {!currentUser.username!} |
currentUser | Shows the name of the user | {!currentUser.name!} |
currentUser | Shows the user's email of the current environment | {!currentUser.email!} |
currentUser | Shows the primary email of the user | {!currentUser.primaryEmail!} |