github.com/prebid/prebid-server@v0.275.0/adapters/mobilefuse/mobilefusetest/exemplary/simple-video.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "1", 7 "video": { 8 "mimes": [ 9 "video/mp4" 10 ], 11 "protocols": [ 12 2, 13 5 14 ], 15 "w": 320, 16 "h": 480 17 }, 18 "ext": { 19 "bidder": { 20 "placement_id": 200000, 21 "pub_id": 2000 22 } 23 } 24 } 25 ] 26 }, 27 "httpCalls": [ 28 { 29 "expectedRequest": { 30 "uri": "http://mfx.mobilefuse.com/openrtb?pub_id=2000", 31 "body": { 32 "id": "test-request-id", 33 "imp": [ 34 { 35 "id": "1", 36 "video": { 37 "mimes": [ 38 "video/mp4" 39 ], 40 "protocols": [ 41 2, 42 5 43 ], 44 "w": 320, 45 "h": 480 46 }, 47 "tagid": "200000" 48 } 49 ] 50 } 51 }, 52 "mockResponse": { 53 "status": 200, 54 "body": { 55 "id": "test-request-id", 56 "cur": "USD", 57 "seatbid": [ 58 { 59 "seat": "mobilefuse", 60 "bid": [ 61 { 62 "id": "test-bid-id", 63 "impid": "1", 64 "price": 2.50, 65 "adm": "some-test-ad", 66 "crid": "test-crid", 67 "w": 320, 68 "h": 480, 69 "ext": { 70 "mf": { 71 "media_type": "video" 72 } 73 } 74 } 75 ] 76 } 77 ] 78 } 79 } 80 } 81 ], 82 "expectedBidResponses": [ 83 { 84 "currency": "USD", 85 "bids": [ 86 { 87 "bid": { 88 "id": "test-bid-id", 89 "impid": "1", 90 "price": 2.50, 91 "adm": "some-test-ad", 92 "crid": "test-crid", 93 "w": 320, 94 "h": 480 95 }, 96 "type": "video" 97 } 98 ] 99 } 100 ] 101 }