User Signals API
Last updated
// Passing the first parameter
IASDKCore.sharedInstance().setExtraData(key: "UID2", value: "UID2.0_access_token")
// Passing the second parameter
IASDKCore.sharedInstance().setExtraData(key: "LRE", value: "LiveRamp_envelope")
// Removing a custom parameter
IASDKCore.sharedInstance().setExtraData(key: "UID2", value: nil)// Passing the first parameter
[[IASDKCore sharedInstance] setExtraDataWithKey:@"key1" value:@"value1"];
// Passing the second parameter
[[IASDKCore sharedInstance] setExtraDataWithKey:@"key2" value:@"value2"];
// Removing a custom parameter
[[IASDKCore sharedInstance] setExtraDataWithKey:@"key1" value:nil];