github.com/prebid/prebid-server/v2@v2.18.0/adapters/aso/asotest/exemplary/app-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "app": { 5 "bundle": "com.prebid" 6 }, 7 "device": { 8 "ip":"127.0.0.1" 9 }, 10 "imp": [ 11 { 12 "id": "test-imp-id", 13 "banner": { 14 "format": [ 15 { 16 "w": 300, 17 "h": 50 18 } 19 ] 20 }, 21 "ext": { 22 "bidder": { 23 "zone": 123456 24 } 25 } 26 } 27 ] 28 }, 29 30 "httpCalls": [ 31 { 32 "expectedRequest": { 33 "uri": "https://srv.aso1.net/pbs/bidder?zid=123456", 34 "headers": { 35 "Accept": [ 36 "application/json" 37 ], 38 "Content-Type": [ 39 "application/json;charset=utf-8" 40 ] 41 }, 42 "body": { 43 "id": "test-request-id", 44 "app": { 45 "bundle": "com.prebid" 46 }, 47 "device": { 48 "ip":"127.0.0.1" 49 }, 50 "imp": [ 51 { 52 "id": "test-imp-id", 53 "banner": { 54 "format": [ 55 { 56 "w": 300, 57 "h": 50 58 } 59 ] 60 }, 61 "ext": { 62 "bidder": { 63 "zone": 123456 64 } 65 } 66 } 67 ] 68 }, 69 "impIDs":["test-imp-id"] 70 }, 71 "mockResponse": { 72 "status": 200, 73 "body": { 74 "id": "test-request-id", 75 "seatbid": [ 76 { 77 "seat": "seat", 78 "bid": [ 79 { 80 "id": "1", 81 "impid": "test-imp-id", 82 "price": 0.500000, 83 "adm": "html code", 84 "crid": "123", 85 "h": 50, 86 "w": 300, 87 "ext": { 88 "prebid": { 89 "type": "banner" 90 } 91 } 92 } 93 ] 94 } 95 ], 96 "cur": "USD" 97 } 98 } 99 } 100 ], 101 102 "expectedBidResponses": [ 103 { 104 "currency": "USD", 105 "bids": [ 106 { 107 "bid": { 108 "id": "1", 109 "impid": "test-imp-id", 110 "price": 0.5, 111 "adm": "html code", 112 "crid": "123", 113 "w": 300, 114 "h": 50, 115 "ext": { 116 "prebid": { 117 "type": "banner" 118 } 119 } 120 }, 121 "type": "banner" 122 } 123 ] 124 } 125 ] 126 }