From 8c682ac3aabc4e4164a82b9dee773588fcc766ec Mon Sep 17 00:00:00 2001 From: Kalidas Date: Tue, 13 Feb 2024 12:14:16 +0000 Subject: [PATCH] Added custom user object --- modules/alkimiBidAdapter.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/alkimiBidAdapter.js b/modules/alkimiBidAdapter.js index d6cee98c3a4..d4e7cab8ed1 100644 --- a/modules/alkimiBidAdapter.js +++ b/modules/alkimiBidAdapter.js @@ -46,6 +46,8 @@ export const spec = { const alkimiConfig = config.getConfig('alkimi') const fullPageAuction = bidderRequest.ortb2?.source?.ext?.full_page_auction const source = fullPageAuction != undefined ? { ext: { full_page_auction: fullPageAuction } } : undefined + const walletID = alkimiConfig && alkimiConfig.walletID + const user = walletID != undefined ? { ext: { walletID: walletID } } : undefined let payload = { requestId: generateUUID(), @@ -62,6 +64,7 @@ export const spec = { }, ortb2: { source, + user, site: { keywords: bidderRequest.ortb2?.site?.keywords },