github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/disabled/good/partial.json (about) 1 { 2 "description": "Request comes with some imps directed toward disabled adapters, but there's one non-disabled adapter and we expect a successful response", 3 "config": { 4 "disabledAdapters": ["appnexus", "rubicon"], 5 "mockBidders": [ 6 {"bidderName": "appnexus", "currency": "USD", "price": 1.00}, 7 {"bidderName": "rubicon", "currency": "USD", "price": 1.00}, 8 {"bidderName": "openx", "currency": "USD", "price": 1.00} 9 ] 10 }, 11 "mockBidRequest": { 12 "id": "some-request-id", 13 "site": { 14 "page": "test.somepage.com" 15 }, 16 "imp": [ 17 { 18 "id": "my-imp-id", 19 "banner": { 20 "format": [ 21 { 22 "w": 300, 23 "h": 600 24 } 25 ] 26 }, 27 "pmp": { 28 "deals": [ 29 { 30 "id": "some-deal-id" 31 } 32 ] 33 }, 34 "ext": { 35 "appnexus": { 36 "placementId": 12883451 37 }, 38 "rubicon": { 39 "accountId": 1001, 40 "siteId": 113932, 41 "zoneId": 535510 42 }, 43 "openx": { 44 "unit": "539439964", 45 "delDomain": "se-demo-d.openx.net", 46 "customFloor": 0.1, 47 "customParams": {"foo": "bar"} 48 } 49 } 50 } 51 ], 52 "ext": { 53 "prebid": { 54 "targeting": { 55 "pricegranularity": "low" 56 }, 57 "cache": { 58 "bids": {} 59 } 60 } 61 } 62 }, 63 "expectedBidResponse": { 64 "id":"some-request-id", 65 "bidid":"test bid id", 66 "cur": "USD", 67 "nbr":0, 68 "seatbid": [ 69 { 70 "bid": [ 71 { 72 "id": "openx-bid", 73 "impid": "my-imp-id", 74 "price": 1 75 } 76 ], 77 "seat": "openx" 78 } 79 ] 80 }, 81 "expectedReturnCode": 200 82 }