github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/alternate-bidder-code/alternate-bidder-code.json (about) 1 { 2 "description": "Imp extension doesn't come with valid bidder name but does come with valid bidder alias as defined in the mockAliases list.", 3 "config": { 4 "mockBidders": [ 5 { 6 "bidderName": "appnexus", 7 "currency": "USD", 8 "price": 2, 9 "seat": "groupm" 10 } 11 ] 12 }, 13 "mockBidRequest": { 14 "id": "some-request-id", 15 "site": { 16 "page": "test.somepage.com", 17 "publisher": { 18 "id": "alternate_bidder_code_acct" 19 } 20 }, 21 "imp": [ 22 { 23 "id": "my-imp-id", 24 "video": { 25 "mimes": [ 26 "video/mp4" 27 ] 28 }, 29 "ext": { 30 "appnexus": { 31 "placementId": 12883451 32 } 33 } 34 } 35 ] 36 }, 37 "expectedBidResponse": { 38 "id":"some-request-id", 39 "bidid":"test bid id", 40 "cur": "USD", 41 "nbr":0, 42 "seatbid": [ 43 { 44 "bid": [ 45 { 46 "id": "appnexus-bid", 47 "impid": "my-imp-id", 48 "price": 2, 49 "ext": { 50 "origbidcpm": 2, 51 "origbidcur": "USD", 52 "prebid": { 53 "meta": { 54 "adaptercode": "appnexus" 55 }, 56 "type": "banner" 57 } 58 } 59 } 60 ], 61 "seat": "groupm" 62 } 63 ] 64 }, 65 "expectedReturnCode": 200 66 } 67