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