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