ADD_EVENT

Add a new event to a given event list. The system will automatically populate the event with all properties defined for the collection associated with the event list.

Usage

ADD_EVENT(eventListName, timestamp)

Parameters

eventListName

String

The name of the list to add an event to.

timestamp

DateTimeString

The time stamp of the event.

Returns

Action

Examples

ADD_EVENT(‘MyEventList’, GET_CURRENT_TIME())

Add a new event to MyEventList, using the current time as timestamp.

ADD_EVENT(‘MyEventList’, ‘2021-04-22T00:21:17Z’)

Add a new event to MyEventList, using the specified time as timestamp.

Remarks

If the provided event list name does not exist or if the definition of the list is invalid, no event will be added.