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