github.com/prebid/prebid-server/v2@v2.18.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 "impIDs":["1"] 47 }, 48 49 "mockResponse": { 50 "status": 200, 51 "body": { 52 "id": "test-request-id", 53 "seatbid": [ 54 { 55 "seat": "mobilefuse", 56 "bid": [ 57 { 58 "id": "test-bid-id", 59 "impid": "1", 60 "price": 1.50, 61 "adm": "some-test-ad", 62 "crid": "test-crid", 63 "h": 50, 64 "w": 320, 65 "ext": { 66 "mf": { 67 "media_type": "banner" 68 } 69 } 70 } 71 ] 72 } 73 ], 74 "cur": "USD" 75 } 76 } 77 } 78 ], 79 80 "expectedBidResponses": [ 81 { 82 "currency": "USD", 83 "bids": [ 84 { 85 "bid": { 86 "id": "test-bid-id", 87 "impid": "1", 88 "price": 1.50, 89 "adm": "some-test-ad", 90 "crid": "test-crid", 91 "w": 320, 92 "h": 50 93 }, 94 "type": "banner" 95 } 96 ] 97 } 98 ] 99 }