Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageapplescript
titleSwift
var properties = [String:String]()
properties["OM.tid"] ="Order ID"
properties["OM.pp"] = "Product1 Code;Product2 Code"
properties["OM.pu"] = "Product1 Quantity;Product2 Quantity"
properties["OM.ppr"] = "Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity"
properties["OM.exVisitorID"] = "memberID/userID"
properties["OM.sys.TokenID"] = "Token ID to use for push messages"
properties["OM.sys.AppID"] = "App ID to use for push messages"
Visilabs.callAPI().customEvent("Purchase", withProperties: NSMutableDictionary(dictionary: properties))
Info

TokenID and AppID parameters are optional.

...

Note
Please do not forget to use a universalID/customerID as the user ID which you also share with other parties such as ESP. If you are using GSM number or email address instead of a userID please send that info as user ID and make sure that you share the same ID with other parties.

...