ActionstrackEventVersion: 4.59On this pagetrackEvent Tracks an event in Firebase Analytics or Matomo. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"action"StringAction of the event.null"async"BooleanSpecifies whether the action should perform asynchronously.null"deviceId"StringDevice-ID of the event (UWP only)null"id"StringID of the event (UWP only).null"label"StringLabel of the event.null"name"StringName of the event (UWP only).null"timestamp"StringTimestamp of the event (UWP only).null"user"StringUser of the event (UWP only).null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example: track event Track event which has openBrowser action. { "type": "trackEvent", "params": { "action": "openBrowser", "label": "Opened website" }} The actions to be executed are specified in the actions parameter, in this case a trackEvent action. Result: A trackEvent action has been created.