github.com/prebid/prebid-server@v0.275.0/adapters/aceex/aceextest/exemplary/video-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-id", 23 "tagid": "ogTAGID", 24 "video": { 25 "mimes": [ 26 "video/mp4" 27 ], 28 "w": 640, 29 "h": 480, 30 "minduration": 120, 31 "maxduration": 150 32 }, 33 "ext": { 34 "bidder": { 35 "accountid": "hash" 36 } 37 } 38 } 39 ] 40 }, 41 "httpCalls": [ 42 { 43 "expectedRequest": { 44 "headers": { 45 "Content-Type": [ 46 "application/json;charset=utf-8" 47 ], 48 "Accept": [ 49 "application/json" 50 ], 51 "X-Openrtb-Version": [ 52 "2.5" 53 ], 54 "User-Agent": [ 55 "test-user-agent" 56 ], 57 "X-Forwarded-For": [ 58 "123.123.123.123" 59 ] 60 }, 61 "uri": "http://us.example.com/bid?uqhash=hash", 62 "body": { 63 "id": "some-request-id", 64 "device": { 65 "ua": "test-user-agent", 66 "ip": "123.123.123.123", 67 "language": "en", 68 "dnt": 0 69 }, 70 "imp": [ 71 { 72 "id": "some-impression-id", 73 "tagid": "ogTAGID", 74 "video": { 75 "mimes": [ 76 "video/mp4" 77 ], 78 "minduration": 120, 79 "maxduration": 150, 80 "w": 640, 81 "h": 480 82 } 83 } 84 ], 85 "site": { 86 "page": "test.com", 87 "publisher": { 88 "id": "123456789" 89 } 90 }, 91 "user": { 92 "buyeruid": "awesome-user" 93 }, 94 "tmax": 1000 95 } 96 }, 97 "mockResponse": { 98 "status": 200, 99 "body": { 100 "id": "awesome-resp-id", 101 "seatbid": [ 102 { 103 "bid": [ 104 { 105 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 106 "impid": "some-impression-id", 107 "price": 3.5, 108 "adm": "awesome-markup", 109 "adomain": [ 110 "awesome.com" 111 ], 112 "crid": "20", 113 "w": 1280, 114 "h": 720, 115 "ext": { 116 "prebid": { 117 "type": "video" 118 } 119 } 120 } 121 ], 122 "seat": "aceex" 123 } 124 ], 125 "cur": "USD", 126 "ext": { 127 "responsetimemillis": { 128 "aceex": 154 129 }, 130 "tmaxrequest": 1000 131 } 132 } 133 } 134 } 135 ], 136 "expectedBidResponses": [ 137 { 138 "bids": [ 139 { 140 "bid": { 141 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 142 "impid": "some-impression-id", 143 "price": 3.5, 144 "adm": "awesome-markup", 145 "adomain": [ 146 "awesome.com" 147 ], 148 "crid": "20", 149 "w": 1280, 150 "h": 720, 151 "ext": { 152 "prebid": { 153 "type": "video" 154 } 155 } 156 }, 157 "type":"video" 158 } 159 ] 160 } 161 ] 162 }