github.com/prebid/prebid-server@v0.275.0/adapters/revcontent/revcontenttest/exemplary/simple-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [{"w": 300, "h": 50}] 9 } 10 } 11 ], 12 "site": { 13 "id": "example", 14 "domain": "example.com", 15 "page": "example.com", 16 "publisher": { 17 "id": "example" 18 } 19 } 20 }, 21 22 "httpCalls": [ 23 { 24 "expectedRequest": { 25 "uri": "https://trends.revcontent.com/rtb?userId=1234&apiKey=abcd", 26 "body": { 27 "id": "test-request-id", 28 "imp": [ 29 { 30 "id":"test-imp-id", 31 "banner": { 32 "format": [{"w": 300, "h": 50}] 33 } 34 } 35 ], 36 "site": { 37 "id": "example", 38 "domain": "example.com", 39 "page": "example.com", 40 "publisher": { 41 "id": "example" 42 } 43 } 44 } 45 }, 46 "mockResponse": { 47 "status": 200, 48 "body": { 49 "id": "test-request-id", 50 "seatbid": [ 51 { 52 "seat": "ttx", 53 "bid": [{ 54 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 55 "impid": "test-imp-id", 56 "price": 1.2, 57 "adm": "<div></div>", 58 "crid": "crid_testid" 59 }] 60 } 61 ], 62 "cur": "USD" 63 } 64 } 65 } 66 ], 67 68 "expectedBidResponses": [ 69 { 70 "currency": "USD", 71 "bids": [ 72 { 73 "bid": { 74 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 75 "impid": "test-imp-id", 76 "price": 1.2, 77 "adm": "<div></div>", 78 "crid": "crid_testid" 79 }, 80 "type": "banner" 81 } 82 ] 83 } 84 ] 85 }