github.com/prebid/prebid-server/v2@v2.18.0/adapters/trustedstack/trustedstacktest/exemplary/simple-native.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "1", 7 "native": { 8 "request": "sample-native-request" 9 }, 10 "ext": { 11 "bidder": { 12 "cid": "8CUTSTCID", 13 "crid": "999999999" 14 } 15 } 16 } 17 ] 18 }, 19 20 "httpCalls": [ 21 { 22 "expectedRequest": { 23 "uri": "https://example.trustedstack.com/rtb/prebid?src=http%3A%2F%2Fhosturl.com", 24 "body": { 25 "id": "test-request-id", 26 "imp": [ 27 { 28 "id": "1", 29 "native": { 30 "request": "sample-native-request" 31 }, 32 "ext": { 33 "bidder": { 34 "cid": "8CUTSTCID", 35 "crid": "999999999" 36 } 37 } 38 } 39 ] 40 }, 41 "impIDs":["1"] 42 }, 43 44 "mockResponse": { 45 "status": 200, 46 "body": { 47 "id": "test-request-id", 48 "seatbid": [ 49 { 50 "seat": "trustedstack", 51 "bid": [ 52 { 53 "id": "test-bid-id", 54 "impid": "1", 55 "price": 1.50, 56 "adm": "some-test-ad", 57 "crid": "test-crid", 58 "h": 50, 59 "w": 320, 60 "mtype": 4 61 } 62 ] 63 } 64 ], 65 "cur": "USD" 66 } 67 } 68 } 69 ], 70 71 "expectedBidResponses": [ 72 { 73 "currency": "USD", 74 "bids": [ 75 { 76 "bid": { 77 "id": "test-bid-id", 78 "impid": "1", 79 "price": 1.50, 80 "adm": "some-test-ad", 81 "crid": "test-crid", 82 "w": 320, 83 "h": 50, 84 "mtype": 4 85 }, 86 "type": "native" 87 } 88 ] 89 } 90 ] 91 }