github.com/prebid/prebid-server@v0.275.0/adapters/bliink/bliinktest/supplemental/multiple_format_request.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123" 7 }, 8 "user": { 9 "buyeruid": "awesome-user", 10 "ext": { 11 "consent": "gdprConsentString" 12 } 13 }, 14 "site": { 15 "page": "test.com", 16 "publisher": { 17 "id": "123456789" 18 } 19 }, 20 "imp": [ 21 { 22 "id": "some-impression-id", 23 "tagid": "TAGID", 24 "banner": { 25 "w": 320, 26 "h": 50 27 } 28 }, 29 { 30 "id": "some-impression-id", 31 "tagid": "TAGID", 32 "native": { 33 "request": "{test json string}", 34 "ver": "1.2" 35 } 36 } 37 ] 38 }, 39 "httpCalls": [ 40 { 41 "expectedRequest": { 42 "headers": { 43 "Content-Type": [ 44 "application/json;charset=utf-8" 45 ], 46 "Accept": [ 47 "application/json" 48 ], 49 "X-Openrtb-Version": [ 50 "2.5" 51 ] 52 }, 53 "uri": "http://biddertest.url/bid", 54 "body": { 55 "id": "some-request-id", 56 "device": { 57 "ua": "test-user-agent", 58 "ip": "123.123.123.123" 59 }, 60 "imp": [ 61 { 62 "id": "some-impression-id", 63 "banner": { 64 "w": 320, 65 "h": 50 66 }, 67 "tagid": "TAGID" 68 }, 69 { 70 "id": "some-impression-id", 71 "tagid": "TAGID", 72 "native": { 73 "request": "{test json string}", 74 "ver": "1.2" 75 } 76 } 77 ], 78 "site": { 79 "page": "test.com", 80 "publisher": { 81 "id": "123456789" 82 } 83 }, 84 "user": { 85 "buyeruid": "awesome-user", 86 "ext": { 87 "consent": "gdprConsentString" 88 } 89 } 90 } 91 }, 92 "mockResponse": { 93 "status": 200, 94 "body": { 95 "id": "awesome-resp-id", 96 "seatbid": [ 97 { 98 "bid": [ 99 { 100 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 101 "impid": "some-impression-id", 102 "price": 0.9, 103 "adm": "awesome-markup", 104 "adomain": [ 105 "awesome.com" 106 ], 107 "crid": "20", 108 "w": 320, 109 "h": 50 110 } 111 ] 112 } 113 ], 114 "cur": "EUR" 115 } 116 } 117 } 118 ], 119 "expectedBidResponses": [{"currency":"USD","bids":[]}], 120 "expectedMakeBidsErrors": [ 121 { 122 "value": "unable to fetch mediaType in multi-format: some-impression-id", 123 "comparison": "literal" 124 } 125 ] 126 }