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