Timezone
This function returns the full timestamp (date and time) of any given date in text form.
dateTimeToString(timestamp, timeZone, language) #Output: Text
Examples
|
Parser Expression |
Description |
|---|---|
|
Bash
|
This example could return: 18/May/20 7:52 AM |
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
|
number |
The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date). |
|
|
timezone |
The time zone used for the conversion. |
|
|
Language |
The language used for the conversion. |
Output
This function returns a text
Date-time pattern
Variant where you can additionally define a custom date time pattern (see documentation).
dateTimeToString(timestamp, dateTimePattern, language) #Output: Text
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example could return: 2020.05.18 at 07:52:02 |
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
|
number |
The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date). |
|
|
text |
A Java date time pattern (see documentation). |
|
|
language |
The language used for the conversion. |
Output
This function returns a text
Date-time pattern timezone
Variant where you can specify a custom format according to the date time pattern and additionally a time zone (see documentation).
dateTimeToString(timestamp, dateTimePattern, timeZone, language) #Output: Text
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns: 1970.01.01 at 00:00:00 |
|
Bash
|
This example returns: 1969.12.31 at 17:00:00 |
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
|
number |
The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date). |
|
|
text |
A Java date time pattern (see documentation). |
|
|
timezone |
The time zone used for the calculation. |
|
|
language |
The language used for the conversion. |
Output
This function returns a text
(books) Use cases and examples
| Use case | JWT feature | Workflow function | Field type | Automated action | Parser functions |
|---|---|---|---|---|---|
| Keep track of important status updates |
|
dateTimeToString() |