Skip to content

Commit

Permalink
added getValue function for intentIq and zeotap in USER_IDS_CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
manisha committed Jan 5, 2021
1 parent 12e8454 commit cd0d419
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions modules/userId/eids.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ const USER_IDS_CONFIG = {
// intentIqId
'intentIqId': {
source: 'intentiq.com',
atype: 1
atype: 1,
getValue: function(data) {
return data.RESULT;
}
},

// pubCommonId
Expand Down Expand Up @@ -137,7 +140,10 @@ const USER_IDS_CONFIG = {
// zeotapIdPlus
'IDP': {
source: 'zeotap.com',
atype: 1
atype: 1,
getValue: function getValue(data) {
return data.id;
}
},

// haloId
Expand Down

0 comments on commit cd0d419

Please sign in to comment.