Adobe Target Data providers - used as profile parameters
Hi all,
We are using the data providers function to call an API and pass through data to Adobe Target. In one of the use case we need this parameters to being added as part of profile so firstly can I pass the values as profile parameters using the profile. prefix, in callback function?
Reference link - https://experienceleague.adobe.com/en/docs/target-learn/tutorials/integrations/implement-data-providers-to-integrate-third-party-data
For ex like below -
var simpleDataProvider = {
name: "simpleDataProvider",
version: "1.0.0",
provider: function(callback) {
callback(null, {
profile.t1: 1
profile.t2: 2
});
}
};
window.targetGlobalSettings = {
dataProviders: [
simpleDataProvider
]
};
have tried in multiple ways but no success - any help highly appreciated.
@alexbishop @rajneesh_gautam_ @matthew_ravlich_acg
