github.com/prebid/prebid-server@v0.275.0/adapters/kayzen/kayzentest/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": "0000-000-000-0000" 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 "video": { 30 "mimes": [ 31 "video/mp4" 32 ], 33 "w": 640, 34 "h": 480, 35 "minduration": 120, 36 "maxduration": 150 37 }, 38 "ext": { 39 "bidder": { 40 "zone": "dc", 41 "exchange": "ex" 42 } 43 } 44 } 45 ] 46 }, 47 "httpCalls": [ 48 { 49 "expectedRequest": { 50 "headers": { 51 "Content-Type": [ 52 "application/json;charset=utf-8" 53 ], 54 "Accept": [ 55 "application/json" 56 ] 57 }, 58 "uri": "https://example-dc.com/?exchange=ex", 59 "body": { 60 "id": "some-request-id", 61 "device": { 62 "ua": "test-user-agent", 63 "ip": "123.123.123.123", 64 "language": "en", 65 "dnt": 0 66 }, 67 "imp": [ 68 { 69 "id": "some-impression-id", 70 "video": { 71 "mimes": [ 72 "video/mp4" 73 ], 74 "minduration": 120, 75 "maxduration": 150, 76 "w": 640, 77 "h": 480 78 } 79 } 80 ], 81 "app": { 82 "id": "123456789", 83 "name": "Awesome App", 84 "bundle": "com.app.awesome", 85 "domain": "awesomeapp.com", 86 "cat": [ 87 "IAB22-1" 88 ], 89 "publisher": { 90 "id": "123456789" 91 } 92 }, 93 "user": { 94 "buyeruid": "0000-000-000-0000" 95 }, 96 "tmax": 1000 97 } 98 }, 99 "mockResponse": { 100 "status": 200, 101 "body": { 102 "id": "awesome-resp-id", 103 "seatbid": [ 104 { 105 "bid": [ 106 { 107 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 108 "impid": "some-impression-id", 109 "price": 3.5, 110 "adm": "awesome-markup", 111 "adomain": [ 112 "awesome.com" 113 ], 114 "crid": "20", 115 "w": 1280, 116 "h": 720 117 } 118 ], 119 "seat": "kayzen-prebid" 120 } 121 ], 122 "cur": "USD", 123 "ext": { 124 } 125 } 126 } 127 } 128 ], 129 "expectedBidResponses": [ 130 { 131 "bids":[ 132 { 133 "bid": { 134 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 135 "impid": "some-impression-id", 136 "price": 3.5, 137 "adm": "awesome-markup", 138 "crid": "20", 139 "adomain": [ 140 "awesome.com" 141 ], 142 "w": 1280, 143 "h": 720 144 }, 145 "type": "video" 146 } 147 ] 148 } 149 ] 150 }