Skip to content

Commit

Permalink
[RPO-3785] Add schain to payload
Browse files Browse the repository at this point in the history
  • Loading branch information
Skitelman committed May 21, 2024
1 parent c13d1e1 commit a215d26
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/concertBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const spec = {
gdprConsent: bidderRequest.gdprConsent,
gppConsent: bidderRequest.gppConsent,
tdid: getTdid(bidderRequest, validBidRequests),
schain: getSchain(validBidRequests),
}
};

Expand Down Expand Up @@ -279,3 +280,7 @@ function getTdid(bidderRequest, validBidRequests) {

return deepAccess(validBidRequests[0], 'userId.tdid') || null;
}

function getSchain(validBidRequests) {
return deepAccess(validBidRequests[0], 'schain') || null;
}

0 comments on commit a215d26

Please sign in to comment.