github.com/prebid/prebid-server/v2@v2.18.0/adapters/rtbhouse/rtbhousetest/exemplary/app_banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "app": { 5 "bundle": "com.prebid" 6 }, 7 "device": { 8 "ua": "test-user-agent", 9 "ip": "123.123.123.123", 10 "language": "en", 11 "dnt": 0 12 }, 13 "imp": [{ 14 "id": "test-imp-id", 15 "banner": { 16 "format": [{ 17 "w": 300, 18 "h": 250 19 }] 20 }, 21 "ext": { 22 "bidder": {} 23 } 24 }] 25 }, 26 27 "httpCalls": [{ 28 "expectedRequest": { 29 "uri": "http://localhost/prebid_server", 30 "body": { 31 "id": "test-request-id", 32 "cur": ["USD"], 33 "app": { 34 "bundle": "com.prebid" 35 }, 36 "device": { 37 "ua": "test-user-agent", 38 "ip": "123.123.123.123", 39 "language": "en", 40 "dnt": 0 41 }, 42 "imp": [{ 43 "id": "test-imp-id", 44 "banner": { 45 "format": [{ 46 "w": 300, 47 "h": 250 48 }] 49 }, 50 "ext": { 51 "bidder": {} 52 } 53 }] 54 }, 55 "impIDs":["test-imp-id"] 56 }, 57 "mockResponse": { 58 "status": 200, 59 "body": { 60 "id": "test-request-id", 61 "seatbid": [{ 62 "seat": "rtbhouse", 63 "bid": [{ 64 "id": "randomid", 65 "impid": "test-imp-id", 66 "price": 0.500000, 67 "adid": "12345678", 68 "adm": "some-test-ad", 69 "cid": "987", 70 "crid": "12345678", 71 "h": 250, 72 "w": 300, 73 "mtype": 1 74 }] 75 }], 76 "cur": "USD" 77 } 78 } 79 }], 80 81 "expectedBidResponses": [{ 82 "currency": "USD", 83 "bids": [{ 84 "bid": { 85 "id": "randomid", 86 "impid": "test-imp-id", 87 "price": 0.5, 88 "adm": "some-test-ad", 89 "adid": "12345678", 90 "cid": "987", 91 "crid": "12345678", 92 "w": 300, 93 "h": 250, 94 "mtype": 1 95 }, 96 "type": "banner" 97 }] 98 }] 99 }