github.com/prebid/prebid-server/v2@v2.18.0/adapters/nobid/nobidtest/exemplary/banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [{"w": 728, "h": 90}] 9 }, 10 "ext": { 11 "nobid": { 12 "siteId": "21863532377" 13 } 14 } 15 } 16 ] 17 }, 18 19 "httpCalls": [ 20 { 21 "expectedRequest": { 22 "uri": "http://ads.servenobid.com/ortb_adreq?tek=pbs", 23 "body": { 24 "id": "test-request-id", 25 "imp": [ 26 { 27 "id":"test-imp-id", 28 "banner": { 29 "format": [{"w": 728, "h": 90}] 30 }, 31 "ext": { 32 "nobid": { 33 "siteId": "21863532377" 34 } 35 } 36 } 37 ] 38 }, 39 "impIDs":["test-imp-id"] 40 }, 41 "mockResponse": { 42 "status": 200, 43 "body": { 44 "id": "test-request-id", 45 "seatbid": [ 46 { 47 "seat": "ttx", 48 "bid": [{ 49 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 50 "impid": "test-imp-id", 51 "price": 0.500000, 52 "adm": "some-test-ad", 53 "crid": "crid_10", 54 "h": 90, 55 "w": 728 56 }] 57 } 58 ], 59 "cur": "USD" 60 } 61 } 62 } 63 ], 64 65 "expectedBidResponses": [ 66 { 67 "currency": "USD", 68 "bids": [ 69 { 70 "bid": { 71 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 72 "impid": "test-imp-id", 73 "price": 0.5, 74 "adm": "some-test-ad", 75 "crid": "crid_10", 76 "w": 728, 77 "h": 90 78 }, 79 "type": "banner" 80 } 81 ] 82 } 83 ] 84 } 85