github.com/prebid/prebid-server@v0.275.0/adapters/bidmachine/bidmachinetest/exemplary/simple_banner.json (about) 1 { 2 "mockBidRequest": 3 { 4 "id": "test-request-id", 5 "imp": [ 6 { 7 "id": "test-imp-id", 8 "banner": 9 { 10 "battr": [1], 11 "mimes": [ 12 "image/jpeg", 13 "image/jpg", 14 "image/gif", 15 "image/png" 16 ], 17 "w": 320, 18 "h": 50 19 }, 20 "ext": 21 { 22 "bidder": 23 { 24 "host": "api-us", 25 "path": "auction/rtb/v2", 26 "seller_id": "1" 27 } 28 } 29 }] 30 }, 31 "httpCalls": [ 32 { 33 "expectedRequest": 34 { 35 "uri": "https://api-us.bidmachine.io/auction/rtb/v2/1", 36 "headers": 37 { 38 "Content-Type": [ 39 "application/json" 40 ], 41 "Accept": [ 42 "application/json" 43 ], 44 "X-Openrtb-Version": [ 45 "2.5" 46 ] 47 }, 48 "body": 49 { 50 "id": "test-request-id", 51 "imp": [ 52 { 53 "id": "test-imp-id", 54 "banner": 55 { 56 "battr": [1], 57 "mimes": [ 58 "image/jpeg", 59 "image/jpg", 60 "image/gif", 61 "image/png" 62 ], 63 "w": 320, 64 "h": 50 65 }, 66 "ext": 67 { 68 "bidder": 69 { 70 "host": "api-us", 71 "path": "auction/rtb/v2", 72 "seller_id": "1" 73 } 74 } 75 }] 76 } 77 }, 78 "mockResponse": 79 { 80 "status": 200, 81 "body": 82 { 83 "id": "test-request-id", 84 "seatbid": [ 85 { 86 "bid": [ 87 { 88 "id": "test-bid-id", 89 "impid": "test-imp-id", 90 "price": 100, 91 "adm": "test-adm", 92 "cid": "test-cid", 93 "crid": "test-crid" 94 }], 95 "seat": "bidmachine" 96 }], 97 "cur": "USD" 98 } 99 } 100 }], 101 "expectedBidResponses": [ 102 { 103 "currency": "USD", 104 "bids": [ 105 { 106 "bid": 107 { 108 "id": "test-bid-id", 109 "impid": "test-imp-id", 110 "price": 100, 111 "adm": "test-adm", 112 "cid": "test-cid", 113 "crid": "test-crid" 114 }, 115 "type": "banner" 116 }] 117 }] 118 }