github.com/prebid/prebid-server@v0.275.0/adapters/telaria/telariatest/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 "adCode": "my-adcode", 42 "seatCode": "my-seatcode", 43 "extra": { 44 "custom": "1234" 45 } 46 } 47 } 48 } 49 ] 50 }, 51 "httpCalls": [ 52 { 53 "expectedRequest": { 54 "headers": { 55 "Content-Type": [ 56 "application/json;charset=utf-8" 57 ], 58 "Accept": [ 59 "application/json" 60 ], 61 "X-Openrtb-Version": [ 62 "2.5" 63 ], 64 "User-Agent": [ 65 "test-user-agent" 66 ], 67 "X-Forwarded-For": [ 68 "123.123.123.123" 69 ], 70 "Accept-Language": [ 71 "en" 72 ], 73 "Dnt": [ 74 "0" 75 ] 76 }, 77 "uri": "https://ads.tremorhub.com/ad/rtb/prebid", 78 "body": { 79 "id": "some-request-id", 80 "ext": { 81 "extra": { 82 "custom": "1234" 83 } 84 }, 85 "device": { 86 "ua": "test-user-agent", 87 "ip": "123.123.123.123", 88 "language": "en", 89 "dnt": 0 90 }, 91 "imp": [ 92 { 93 "id": "some-impression-id", 94 "video": { 95 "mimes": [ 96 "video/mp4" 97 ], 98 "minduration": 120, 99 "maxduration": 150, 100 "w": 640, 101 "h": 480 102 }, 103 "tagid": "my-adcode", 104 "ext": { 105 "originalTagid": "ogTAGID", 106 "originalPublisherid": "123456789" 107 } 108 } 109 ], 110 "app": { 111 "id": "123456789", 112 "name": "Awesome App", 113 "bundle": "com.app.awesome", 114 "domain": "awesomeapp.com", 115 "cat": [ 116 "IAB22-1" 117 ], 118 "publisher": { 119 "id": "my-seatcode" 120 } 121 }, 122 "user": { 123 "buyeruid": "awesome-user" 124 }, 125 "tmax": 1000 126 } 127 }, 128 "mockResponse": { 129 "status": 200, 130 "body": { 131 "id": "awesome-resp-id", 132 "seatbid": [ 133 { 134 "bid": [ 135 { 136 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 137 "impid": "some-impression-id", 138 "price": 3.5, 139 "adm": "awesome-markup", 140 "adomain": [ 141 "awesome.com" 142 ], 143 "crid": "20", 144 "w": 1280, 145 "h": 720, 146 "ext": { 147 "prebid": { 148 "type": "video" 149 } 150 } 151 } 152 ], 153 "seat": "telaria" 154 } 155 ], 156 "cur": "USD", 157 "ext": { 158 "responsetimemillis": { 159 "telaria": 154 160 }, 161 "tmaxrequest": 1000 162 } 163 } 164 } 165 } 166 ], 167 "expectedBidResponses": [ 168 { 169 "bids": [{ 170 "bid": { 171 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 172 "impid": "some-impression-id", 173 "price": 3.5, 174 "adm": "awesome-markup", 175 "adomain": [ 176 "awesome.com" 177 ], 178 "crid": "20", 179 "w": 1280, 180 "h": 720, 181 "ext": { 182 "prebid": { 183 "type": "video" 184 } 185 } 186 }, 187 "type": "video" 188 }] 189 } 190 ] 191 }