github.com/prebid/prebid-server/v2@v2.18.0/adapters/bizzclick/bizzclicktest/exemplary/video-app.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 "app": { 15 "publisher": { 16 "id": "123456789" 17 }, 18 "cat": [ 19 "IAB22-1" 20 ], 21 "bundle": "com.app.awesome", 22 "name": "Awesome App", 23 "domain": "awesomeapp.com", 24 "id": "123456789" 25 }, 26 "imp": [ 27 { 28 "id": "some-impression-id", 29 "tagid": "ogTAGID", 30 "video": { 31 "mimes": [ 32 "video/mp4" 33 ], 34 "w": 640, 35 "h": 480, 36 "minduration": 120, 37 "maxduration": 150 38 }, 39 "ext": { 40 "bidder": { 41 "accountId": "accountId", 42 "sourceId": "sourceId", 43 "host": "host" 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://host.bizzclick.com/bid?rtb_seat_id=sourceId&secret_key=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-id", 81 "video": { 82 "mimes": [ 83 "video/mp4" 84 ], 85 "minduration": 120, 86 "maxduration": 150, 87 "w": 640, 88 "h": 480 89 }, 90 "tagid": "ogTAGID" 91 } 92 ], 93 "app": { 94 "id": "123456789", 95 "name": "Awesome App", 96 "bundle": "com.app.awesome", 97 "domain": "awesomeapp.com", 98 "cat": [ 99 "IAB22-1" 100 ], 101 "publisher": { 102 "id": "123456789" 103 } 104 }, 105 "user": { 106 "buyeruid": "awesome-user" 107 }, 108 "tmax": 1000 109 }, 110 "impIDs":["some-impression-id"] 111 }, 112 "mockResponse": { 113 "status": 200, 114 "body": { 115 "id": "awesome-resp-id", 116 "seatbid": [ 117 { 118 "bid": [ 119 { 120 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 121 "impid": "some-impression-id", 122 "price": 3.5, 123 "adm": "awesome-markup", 124 "adomain": [ 125 "awesome.com" 126 ], 127 "crid": "20", 128 "w": 1280, 129 "h": 720 130 } 131 ], 132 "seat": "bizzclick" 133 } 134 ], 135 "cur": "USD" 136 } 137 } 138 } 139 ], 140 "expectedBidResponses": [ 141 { 142 "bids": [ 143 { 144 "bid": { 145 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 146 "impid": "some-impression-id", 147 "price": 3.5, 148 "adm": "awesome-markup", 149 "crid": "20", 150 "adomain": [ 151 "awesome.com" 152 ], 153 "w": 1280, 154 "h": 720 155 }, 156 "type": "video" 157 } 158 ] 159 } 160 ] 161 }