github.com/prebid/prebid-server/v2@v2.18.0/adapters/bizzclick/bizzclicktest/exemplary/banner-web.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123", 7 "language": "en", 8 "dnt": 0 9 }, 10 "tmax": 1000, 11 "user": { 12 "buyeruid": "awesome-user" 13 }, 14 "site": { 15 "page": "test.com", 16 "publisher": { 17 "id": "123456789" 18 } 19 }, 20 "imp": [ 21 { 22 "id": "some-impression-id1", 23 "tagid": "ogTAGID", 24 "banner": { 25 "w": 320, 26 "h": 50 27 }, 28 "ext": { 29 "bidder": { 30 "accountId": "accountId", 31 "sourceId": "sourceId", 32 "host": "host" 33 } 34 } 35 }, 36 { 37 "id": "some-impression-id2", 38 "tagid": "ogTAGID", 39 "banner": { 40 "w": 320, 41 "h": 50 42 }, 43 "ext": { 44 "bidder": { 45 "accountId": "accountId", 46 "sourceId": "sourceId", 47 "host": "host" 48 } 49 } 50 } 51 ] 52 }, 53 "httpCalls": [ 54 { 55 "expectedRequest": { 56 "headers": { 57 "Content-Type": [ 58 "application/json;charset=utf-8" 59 ], 60 "Accept": [ 61 "application/json" 62 ], 63 "X-Openrtb-Version": [ 64 "2.5" 65 ], 66 "User-Agent": [ 67 "test-user-agent" 68 ], 69 "X-Forwarded-For": [ 70 "123.123.123.123" 71 ] 72 }, 73 "uri": "http://host.bizzclick.com/bid?rtb_seat_id=sourceId&secret_key=accountId", 74 "body": { 75 "id": "some-request-id", 76 "device": { 77 "ua": "test-user-agent", 78 "ip": "123.123.123.123", 79 "language": "en", 80 "dnt": 0 81 }, 82 "imp": [ 83 { 84 "id": "some-impression-id1", 85 "tagid": "ogTAGID", 86 "banner": { 87 "w": 320, 88 "h": 50 89 } 90 }, 91 { 92 "id": "some-impression-id2", 93 "tagid": "ogTAGID", 94 "banner": { 95 "w": 320, 96 "h": 50 97 } 98 } 99 ], 100 "site": { 101 "page": "test.com", 102 "publisher": { 103 "id": "123456789" 104 } 105 }, 106 "user": { 107 "buyeruid": "awesome-user" 108 }, 109 "tmax": 1000 110 }, 111 "impIDs":["some-impression-id1","some-impression-id2"] 112 }, 113 "mockResponse": { 114 "status": 200, 115 "body": { 116 "id": "awesome-resp-id", 117 "seatbid": [ 118 { 119 "bid": [ 120 { 121 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 122 "impid": "some-impression-id1", 123 "price": 3.5, 124 "adm": "awesome-markup", 125 "adomain": [ 126 "awesome.com" 127 ], 128 "crid": "20", 129 "w": 320, 130 "h": 50 131 }, 132 { 133 "id": "a3ae1b4e2fc24a4fb45540082e98e162", 134 "impid": "some-impression-id2", 135 "price": 3.5, 136 "adm": "awesome-markup", 137 "adomain": [ 138 "awesome.com" 139 ], 140 "crid": "20", 141 "w": 320, 142 "h": 50 143 } 144 ], 145 "type": "banner", 146 "seat": "bizzclick" 147 } 148 ], 149 "cur": "USD" 150 } 151 } 152 } 153 ], 154 "expectedBidResponses": [ 155 { 156 "bids": [ 157 { 158 "bid": { 159 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 160 "impid": "some-impression-id1", 161 "price": 3.5, 162 "adm": "awesome-markup", 163 "crid": "20", 164 "adomain": [ 165 "awesome.com" 166 ], 167 "w": 320, 168 "h": 50 169 }, 170 "type": "banner" 171 }, 172 { 173 "bid": { 174 "id": "a3ae1b4e2fc24a4fb45540082e98e162", 175 "impid": "some-impression-id2", 176 "price": 3.5, 177 "adm": "awesome-markup", 178 "crid": "20", 179 "adomain": [ 180 "awesome.com" 181 ], 182 "w": 320, 183 "h": 50 184 }, 185 "type": "banner" 186 } 187 ] 188 } 189 ] 190 }