github.com/prebid/prebid-server/v2@v2.18.0/adapters/rtbhouse/rtbhousetest/exemplary/bidfloor-as-bidder-param.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "cur": [ 5 "EUR" 6 ], 7 "imp": [ 8 { 9 "id": "test-imp-id", 10 "banner": { 11 "format": [ 12 { 13 "w": 300, 14 "h": 250 15 } 16 ] 17 }, 18 "ext": { 19 "bidder": { 20 "publisherId": "12345", 21 "bidfloor": 2 22 } 23 } 24 } 25 ], 26 "ext": { 27 "prebid": { 28 "currency": { 29 "rates": { 30 "EUR": { 31 "USD": 0.05 32 } 33 }, 34 "usepbsrates": false 35 } 36 } 37 } 38 }, 39 "httpCalls": [ 40 { 41 "expectedRequest": { 42 "uri": "http://localhost/prebid_server", 43 "body": { 44 "id": "test-request-id", 45 "cur": [ 46 "USD" 47 ], 48 "imp": [ 49 { 50 "banner": { 51 "format": [ 52 { 53 "h": 250, 54 "w": 300 55 } 56 ] 57 }, 58 "bidfloor": 0.1, 59 "bidfloorcur": "USD", 60 "ext": { 61 "bidder": { 62 "publisherId": "12345", 63 "bidfloor": 2 64 } 65 }, 66 "id": "test-imp-id" 67 } 68 ], 69 "ext": { 70 "prebid": { 71 "currency": { 72 "rates": { 73 "EUR": { 74 "USD": 0.05 75 } 76 }, 77 "usepbsrates": false 78 } 79 } 80 } 81 }, 82 "impIDs":["test-imp-id"] 83 }, 84 "mockResponse": { 85 "status": 200, 86 "body": { 87 "id": "test-response-id", 88 "cur": "USD", 89 "seatbid": [ 90 { 91 "seat": "rtbhouse", 92 "bid": [ 93 { 94 "id": "randomid", 95 "impid": "test-imp-id", 96 "price": 300, 97 "adid": "12345678", 98 "adm": "some-test-ad", 99 "cid": "987", 100 "crid": "12345678", 101 "h": 250, 102 "w": 300, 103 "mtype": 1 104 } 105 ] 106 } 107 ] 108 } 109 } 110 } 111 ], 112 "expectedBidResponses": [ 113 { 114 "currency": "USD", 115 "bids": [ 116 { 117 "bid": { 118 "id": "randomid", 119 "impid": "test-imp-id", 120 "price": 300, 121 "adid": "12345678", 122 "adm": "some-test-ad", 123 "cid": "987", 124 "crid": "12345678", 125 "h": 250, 126 "w": 300, 127 "mtype": 1 128 }, 129 "type": "banner" 130 } 131 ] 132 } 133 ] 134 }