Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

If you would like to send the page’s name visitor is on, use the following function.Example:

Objective -C

Objective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"memberID/userID" forKey:@"OM.exVisitorID"];
[properties setObject:@"Token ID to use for push messages" forKey:@"OM.sys.TokenID"];
[properties setObject:@"App ID to use for push messages" forKey:@"OM.sys.AppID"];
[[Visilabs callAPI] customEvent:@"Page Name" withProperties:properties];

Swift

Swift
var properties = [String:String]()
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("Page Name", withProperties: NSMutableDictionary(dictionary: properties))


TokenID and AppID parameters are optional.

 

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.
  • No labels