Skip to content

Commit

Permalink
Missena: add userEids, add network and cpm to tracking (#9645)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdamoc authored Mar 14, 2023
1 parent d874a0b commit 8adbfcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/missenaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export const spec = {
if (bidRequest.params.isInternal) {
payload.is_internal = bidRequest.params.isInternal;
}
payload.userEids = bidRequest.userIdAsEids || [];
return {
method: 'POST',
url: baseUrl + '?' + formatQS({ t: bidRequest.params.apiKey }),
Expand Down Expand Up @@ -127,7 +128,7 @@ export const spec = {
protocol: 'https',
hostname,
pathname: '/v1/bidsuccess',
search: { t: bid.params[0].apiKey },
search: { t: bid.params[0].apiKey, provider: bid.meta?.networkName, cpm: bid.cpm, currency: bid.currency },
})
);
logInfo('Missena - Bid won', bid);
Expand Down

0 comments on commit 8adbfcd

Please sign in to comment.