github.com/prebid/prebid-server/v2@v2.18.0/adapters/smartyads/smartyadstest/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 "host": "ep1", 36 "sourceid": "partner", 37 "accountid": "hash" 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 "Accept-Language": [ 63 "en" 64 ], 65 "Dnt": [ 66 "0" 67 ] 68 }, 69 "uri": "http://ep1.example.com/bid?rtb_seat_id=partner&secret_key=hash", 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 "tagid": "ogTAGID", 82 "video": { 83 "mimes": [ 84 "video/mp4" 85 ], 86 "minduration": 120, 87 "maxduration": 150, 88 "w": 640, 89 "h": 480 90 } 91 } 92 ], 93 "site": { 94 "page": "test.com", 95 "publisher": { 96 "id": "123456789" 97 } 98 }, 99 "user": { 100 "buyeruid": "awesome-user" 101 }, 102 "tmax": 1000 103 }, 104 "impIDs":["some-impression-id"] 105 }, 106 "mockResponse": { 107 "status": 200, 108 "body": { 109 "id": "awesome-resp-id", 110 "seatbid": [ 111 { 112 "bid": [ 113 { 114 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 115 "impid": "some-impression-id", 116 "price": 3.5, 117 "adm": "awesome-markup", 118 "adomain": [ 119 "awesome.com" 120 ], 121 "crid": "20", 122 "w": 1280, 123 "h": 720, 124 "ext": { 125 "prebid": { 126 "type": "video" 127 } 128 } 129 } 130 ], 131 "seat": "smartyads" 132 } 133 ], 134 "cur": "USD", 135 "ext": { 136 "responsetimemillis": { 137 "smartyads": 154 138 }, 139 "tmaxrequest": 1000 140 } 141 } 142 } 143 } 144 ], 145 "expectedBidResponses": [ 146 { 147 "bids": [{ 148 "bid": { 149 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 150 "impid": "some-impression-id", 151 "price": 3.5, 152 "adm": "awesome-markup", 153 "adomain": [ 154 "awesome.com" 155 ], 156 "crid": "20", 157 "w": 1280, 158 "h": 720, 159 "ext": { 160 "prebid": { 161 "type": "video" 162 } 163 } 164 }, 165 "type": "video" 166 }] 167 } 168 ] 169 }