github.com/prebid/prebid-server@v0.275.0/adapters/mgid/mgidtest/exemplary/simple-banner_no_device.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [ 9 { 10 "w": 300, 11 "h": 250 12 }, 13 { 14 "w": 300, 15 "h": 600 16 } 17 ] 18 }, 19 "ext": { 20 "bidder": { 21 "accountId": "123", 22 "placementId": "456", 23 "bidfloor": 1.1, 24 "cur": "GBP" 25 } 26 } 27 } 28 ], 29 "site": { 30 "domain": "www.publisher.com", 31 "page": "http://www.publisher.com/awesome/site" 32 }, 33 "user": { 34 "buyeruid": "test_reader_id" 35 } 36 }, 37 38 "httpCalls": [ 39 { 40 "expectedRequest": { 41 "headers": { 42 "Accept": ["application/json"], 43 "Content-Type": ["application/json;charset=utf-8"] 44 }, 45 "uri": "https://prebid.mgid.com/prebid/123", 46 "body": { 47 "id": "test-request-id", 48 "imp": [ 49 { 50 "id": "test-imp-id", 51 "bidfloor": 1.1, 52 "bidfloorcur": "GBP", 53 "banner": { 54 "format": [ 55 { 56 "w": 300, 57 "h": 250 58 }, 59 { 60 "w": 300, 61 "h": 600 62 } 63 ] 64 }, 65 "tagid": "456/test-imp-id", 66 "ext": { 67 "bidder": { 68 "accountId": "123", 69 "placementId": "456", 70 "bidfloor": 1.1, 71 "cur": "GBP" 72 } 73 } 74 } 75 ], 76 "site": { 77 "domain": "www.publisher.com", 78 "page": "http://www.publisher.com/awesome/site" 79 }, 80 "tmax": 200, 81 "user": { 82 "buyeruid": "test_reader_id" 83 } 84 } 85 }, 86 "mockResponse": { 87 "status": 200, 88 "body": { 89 "id": "test-request-id", 90 "seatbid": [ 91 { 92 "bid": [ 93 { 94 "id": "test-bid-id", 95 "impid": "test-imp-id", 96 "price": 3.5, 97 "nurl": "nurl", 98 "adm": "some-test-ad", 99 "w": 300, 100 "h": 250 101 } 102 ] 103 } 104 ] 105 } 106 } 107 } 108 ], 109 110 "expectedBidResponses": [ 111 { 112 "currency": "USD", 113 "bids": [ 114 { 115 "bid": { 116 "id": "test-bid-id", 117 "impid": "test-imp-id", 118 "price": 3.5, 119 "adm": "some-test-ad", 120 "nurl": "nurl", 121 "w": 300, 122 "h": 250 123 }, 124 "type": "banner" 125 } 126 ] 127 } 128 ] 129 }