github.com/prebid/prebid-server/v2@v2.18.0/adapters/trustedstack/trustedstacktest/exemplary/multi-imps.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "1", 7 "banner": { 8 "format": [ 9 { 10 "w": 320, 11 "h": 50 12 } 13 ] 14 }, 15 "ext": { 16 "bidder": { 17 "cid": "8CUTSTCID", 18 "crid": "999999999" 19 } 20 } 21 }, 22 { 23 "id": "2", 24 "banner": { 25 "format": [ 26 { 27 "w": 300, 28 "h": 50 29 } 30 ] 31 }, 32 "ext": { 33 "bidder": { 34 "cid": "8CUTSESHA", 35 "crid": "9999999789" 36 } 37 } 38 } 39 ] 40 }, 41 42 "httpCalls": [ 43 { 44 "expectedRequest": { 45 "uri": "https://example.trustedstack.com/rtb/prebid?src=http%3A%2F%2Fhosturl.com", 46 "body": { 47 "id": "test-request-id", 48 "imp": [ 49 { 50 "id": "1", 51 "banner": { 52 "format": [ 53 { 54 "w": 320, 55 "h": 50 56 } 57 ] 58 }, 59 "ext": { 60 "bidder": { 61 "cid": "8CUTSTCID", 62 "crid": "999999999" 63 } 64 } 65 }, 66 { 67 "id": "2", 68 "banner": { 69 "format": [ 70 { 71 "w": 300, 72 "h": 50 73 } 74 ] 75 }, 76 "ext": { 77 "bidder": { 78 "cid": "8CUTSESHA", 79 "crid": "9999999789" 80 } 81 } 82 } 83 ] 84 }, 85 "impIDs": ["1","2"] 86 }, 87 88 "mockResponse": { 89 "status": 200, 90 "body": { 91 "id": "test-request-id", 92 "seatbid": [ 93 { 94 "seat": "trustedstack", 95 "bid": [ 96 { 97 "id": "test-bid-id", 98 "impid": "1", 99 "price": 1.50, 100 "adm": "some-test-ad", 101 "crid": "test-crid", 102 "h": 50, 103 "w": 320, 104 "mtype": 1 105 } 106 ] 107 } 108 ], 109 "cur": "USD" 110 } 111 } 112 } 113 ], 114 115 "expectedBidResponses": [ 116 { 117 "currency": "USD", 118 "bids": [ 119 { 120 "bid": { 121 "id": "test-bid-id", 122 "impid": "1", 123 "price": 1.50, 124 "adm": "some-test-ad", 125 "crid": "test-crid", 126 "w": 320, 127 "h": 50, 128 "mtype": 1 129 }, 130 "type": "banner" 131 } 132 ] 133 } 134 ] 135 }