github.com/prebid/prebid-server/v2@v2.18.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 "impIDs":["test-imp-id"] 78 }, 79 "mockResponse": 80 { 81 "status": 200, 82 "body": 83 { 84 "id": "test-request-id", 85 "seatbid": [ 86 { 87 "bid": [ 88 { 89 "id": "test-bid-id", 90 "impid": "test-imp-id", 91 "price": 100, 92 "adm": "test-adm", 93 "cid": "test-cid", 94 "crid": "test-crid" 95 }], 96 "seat": "bidmachine" 97 }], 98 "cur": "USD" 99 } 100 } 101 }], 102 "expectedBidResponses": [ 103 { 104 "currency": "USD", 105 "bids": [ 106 { 107 "bid": 108 { 109 "id": "test-bid-id", 110 "impid": "test-imp-id", 111 "price": 100, 112 "adm": "test-adm", 113 "cid": "test-cid", 114 "crid": "test-crid" 115 }, 116 "type": "banner" 117 }] 118 }] 119 }