github.com/prebid/prebid-server/v2@v2.18.0/adapters/sharethrough/sharethroughtest/supplemental/multi-imp.json (about) 1 { 2 "mockBidRequest": { 3 "id": "web-banner", 4 "tmax": 3000, 5 "imp": [ 6 { 7 "id": "banner-imp-id-1", 8 "ext": { 9 "bidder": { 10 "pkey": "pkey1" 11 } 12 }, 13 "banner": { 14 "format": [ 15 { 16 "w": 300, 17 "h": 250 18 } 19 ] 20 } 21 }, 22 { 23 "id": "banner-imp-id-2", 24 "ext": { 25 "bidder": { 26 "pkey": "pkey2" 27 } 28 }, 29 "banner": { 30 "format": [ 31 { 32 "w": 300, 33 "h": 600 34 } 35 ] 36 } 37 } 38 ], 39 "site": { 40 "publisher": { 41 "id": "1" 42 }, 43 "page": "https://some-site.com", 44 "ref": "https://some-site.com" 45 }, 46 "device": { 47 "w": 1200, 48 "h": 900 49 } 50 }, 51 "httpCalls": [ 52 { 53 "expectedRequest": { 54 "uri": "http://whatever.url", 55 "headers": { 56 "Content-Type": ["application/json;charset=utf-8"], 57 "Accept": ["application/json"] 58 }, 59 "body": { 60 "id": "web-banner", 61 "tmax": 3000, 62 "imp": [ 63 { 64 "id": "banner-imp-id-1", 65 "tagid": "pkey1", 66 "ext": { 67 "bidder": { 68 "pkey": "pkey1" 69 } 70 }, 71 "banner": { 72 "format": [ 73 { 74 "w": 300, 75 "h": 250 76 } 77 ] 78 } 79 } 80 ], 81 "site": { 82 "publisher": { 83 "id": "1" 84 }, 85 "page": "https://some-site.com", 86 "ref": "https://some-site.com" 87 }, 88 "device": { 89 "w": 1200, 90 "h": 900 91 }, 92 "source": { 93 "ext": { 94 "version": "", 95 "str": "10.0" 96 } 97 } 98 }, 99 "impIDs":["banner-imp-id-1"] 100 }, 101 "mockResponse": { 102 "status": 200, 103 "body": { 104 "id": "web-banner", 105 "cur": "USD", 106 "seatbid": [ 107 { 108 "bid": [ 109 { 110 "id": "web-banner", 111 "impid": "banner-imp-id-1", 112 "crid": "some-creative-id", 113 "adm": "<div>Ad</div>", 114 "price": 20, 115 "w": 300, 116 "h": 250, 117 "ext": { 118 "prebid": { 119 "type": "banner" 120 } 121 } 122 } 123 ] 124 } 125 ] 126 } 127 } 128 }, 129 { 130 "expectedRequest": { 131 "uri": "http://whatever.url", 132 "headers": { 133 "Content-Type": ["application/json;charset=utf-8"], 134 "Accept": ["application/json"] 135 }, 136 "body": { 137 "id": "web-banner", 138 "tmax": 3000, 139 "imp": [ 140 { 141 "id": "banner-imp-id-2", 142 "tagid": "pkey2", 143 "ext": { 144 "bidder": { 145 "pkey": "pkey2" 146 } 147 }, 148 "banner": { 149 "format": [ 150 { 151 "w": 300, 152 "h": 600 153 } 154 ] 155 } 156 } 157 ], 158 "site": { 159 "publisher": { 160 "id": "1" 161 }, 162 "page": "https://some-site.com", 163 "ref": "https://some-site.com" 164 }, 165 "device": { 166 "w": 1200, 167 "h": 900 168 }, 169 "source": { 170 "ext": { 171 "version": "", 172 "str": "10.0" 173 } 174 } 175 }, 176 "impIDs":["banner-imp-id-2"] 177 }, 178 "mockResponse": { 179 "status": 200, 180 "body": { 181 "id": "web-banner", 182 "cur": "USD", 183 "seatbid": [ 184 { 185 "bid": [ 186 { 187 "id": "web-banner", 188 "impid": "banner-imp-id-2", 189 "crid": "some-creative-id", 190 "adm": "<div>Ad</div>", 191 "price": 20, 192 "w": 300, 193 "h": 600, 194 "ext": { 195 "prebid": { 196 "type": "banner" 197 } 198 } 199 } 200 ] 201 } 202 ] 203 } 204 } 205 } 206 ], 207 "expectedBidResponses": [ 208 { 209 "currency": "USD", 210 "bids": [ 211 { 212 "bid": { 213 "id": "web-banner", 214 "impid": "banner-imp-id-1", 215 "crid": "some-creative-id", 216 "adm": "<div>Ad</div>", 217 "price": 20, 218 "w": 300, 219 "h": 250, 220 "ext": { 221 "prebid": { 222 "type": "banner" 223 } 224 } 225 }, 226 "type": "banner" 227 } 228 ] 229 }, 230 { 231 "currency": "USD", 232 "bids": [ 233 { 234 "bid": { 235 "id": "web-banner", 236 "impid": "banner-imp-id-2", 237 "crid": "some-creative-id", 238 "adm": "<div>Ad</div>", 239 "price": 20, 240 "w": 300, 241 "h": 600, 242 "ext": { 243 "prebid": { 244 "type": "banner" 245 } 246 } 247 }, 248 "type": "banner" 249 } 250 ] 251 } 252 ] 253 }