Introduction
There are a wide variety of event that you can subscribe to. Those subscription can range from simple mail notifications to to the execution of complex workflows. The subsequent pages will describe each event in detail.
Event Data
Each event contains specific data that is represented as an XML object. All event data shares a base class which contains the following data.
EventOccuredUtc
The date and time when the event occurred, serialized as shown below:
<DateTime> <DateString>01.10.2020</DateString> <TimeString>12:00:00</TimeString> <TimeZone>+00:00</TimeZone> <IsoFormat>2020-10-01T12:00:00.0000000</IsoFormat> <IsoFormatLocalTime>2020-10-01T13:00:00.0000000</IsoFormatLocalTime> <FormattedLocalTime>01.10.2020 13:00:00</FormattedLocalTime> </DateTime>
Note: As the event date is in UTC, the xml structure contains also the IsoFormatLocalTime
and the FormattedLocalTime
to simplify the usage in mail templates.
Event List