github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/supplementary/req-ext-bidder-params.json (about) 1 { 2 "description": "add missing bidder-params from req.ext.prebid.bidderparams to imp[].ext.prebid.bidder", 3 "mockBidRequest": { 4 "id": "some-request-id", 5 "site": { 6 "page": "test.somepage.com" 7 }, 8 "imp": [ 9 { 10 "id": "my-imp-id", 11 "banner": { 12 "format": [ 13 { 14 "w": 300, 15 "h": 600 16 } 17 ] 18 }, 19 "pmp": { 20 "deals": [ 21 { 22 "id": "some-deal-id" 23 } 24 ] 25 }, 26 "ext": { 27 "prebid": { 28 "bidder": { 29 "appnexus": {}, 30 "pubmatic": {} 31 } 32 } 33 } 34 } 35 ], 36 "ext": { 37 "prebid": { 38 "targeting": { 39 "pricegranularity": "low" 40 }, 41 "cache": { 42 "bids": {} 43 }, 44 "bidderparams": { 45 "appnexus": { 46 "placementId": 12883451 47 }, 48 "pubmatic": { 49 "publisherId": "1234", 50 "wrapper": { 51 "profile": 1234, 52 "version": 2 53 } 54 } 55 } 56 } 57 } 58 }, 59 "expectedReqExt": { 60 "prebid": { 61 "targeting": { 62 "pricegranularity": { 63 "precision": 2, 64 "ranges": [ 65 { 66 "min": 0, 67 "max": 5, 68 "increment": 0.5 69 } 70 ] 71 }, 72 "mediatypepricegranularity": {}, 73 "includewinners": true, 74 "includebidderkeys": true 75 }, 76 "cache": { 77 "bids": {} 78 }, 79 "bidderparams": { 80 "appnexus": { 81 "placementId": 12883451 82 }, 83 "pubmatic": { 84 "publisherId": "1234", 85 "wrapper": { 86 "profile": 1234, 87 "version": 2 88 } 89 } 90 } 91 } 92 }, 93 "expectedImpExt": { 94 "prebid": { 95 "bidder": { 96 "appnexus": { 97 "placementId": 12883451 98 }, 99 "pubmatic": { 100 "publisherId": "1234", 101 "wrapper": { 102 "profile": 1234, 103 "version": 2 104 } 105 } 106 } 107 } 108 }, 109 "expectedReturnCode": 200 110 }