DataProviders - profile parameter
Hi,
We are using the data providers function to call an API and pass through data to Adobe Target.
If I want this data to be appended to the profile. Can I just pass the profile.[param_name] in the call back?
E.g.
Instead of:
callback(null, {t1: 1, t2: 2, t3: 3});
callback(null, {profile.t1: 1, profile.t2: 2, profile.t3: 3});
Thanks