Hi @Paul_M_Anderson
we sometimes trigger activities based click events etc using the getOffer() in the handler to retrieve the activity. I assume you could do the same thing and pass your profile params and then within the loaded offer utilise those params
adobe.target.getOffer({
"mbox": "target-global-mbox",
"params": {
"a": 1,
"b": 2,
"profile.age": 27,
"profile.gender": "male"
},
"success": function(offer) {
adobe.target.applyOffer( {
"mbox": "target-global-mbox",
"offer": offer
} );
},
"error": function(status, error) {
console.log('Error', status, error);
}
});