github.com/prebid/prebid-server/v2@v2.18.0/adapters/silvermob/silvermobtest/exemplary/banner-app.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123", 7 "language": "en", 8 "dnt": 0 9 }, 10 "tmax": 1000, 11 "user": { 12 "buyeruid": "awesome-user" 13 }, 14 "app": { 15 "publisher": { 16 "id": "123456789" 17 }, 18 "cat": [ 19 "IAB22-1" 20 ], 21 "bundle": "com.app.awesome", 22 "name": "Awesome App", 23 "domain": "awesomeapp.com", 24 "id": "123456789" 25 }, 26 "imp": [ 27 { 28 "id": "some-impression-id", 29 "tagid": "ogTAGID", 30 "banner": { 31 "w":320, 32 "h":50 33 }, 34 "ext": { 35 "bidder": { 36 "host": "eu", 37 "zoneid": "0" 38 } 39 } 40 } 41 ] 42 }, 43 "httpCalls": [ 44 { 45 "expectedRequest": { 46 "headers": { 47 "Content-Type": [ 48 "application/json;charset=utf-8" 49 ], 50 "Accept": [ 51 "application/json" 52 ], 53 "X-Openrtb-Version": [ 54 "2.5" 55 ], 56 "User-Agent": [ 57 "test-user-agent" 58 ], 59 "X-Forwarded-For": [ 60 "123.123.123.123" 61 ] 62 }, 63 "uri": "http://eu.example.com/api/dsp/bid/0", 64 "body": { 65 "id": "some-request-id", 66 "device": { 67 "ua": "test-user-agent", 68 "ip": "123.123.123.123", 69 "language": "en", 70 "dnt": 0 71 }, 72 "imp": [ 73 { 74 "id": "some-impression-id", 75 "banner": { 76 "w":320, 77 "h":50 78 }, 79 "tagid": "ogTAGID", 80 "ext": { 81 "bidder": { 82 "host": "eu", 83 "zoneid": "0" 84 } 85 } 86 } 87 ], 88 "app": { 89 "id": "123456789", 90 "name": "Awesome App", 91 "bundle": "com.app.awesome", 92 "domain": "awesomeapp.com", 93 "cat": [ 94 "IAB22-1" 95 ], 96 "publisher": { 97 "id": "123456789" 98 } 99 }, 100 "user": { 101 "buyeruid": "awesome-user" 102 }, 103 "tmax": 1000 104 }, 105 "impIDs":["some-impression-id"] 106 }, 107 "mockResponse": { 108 "status": 200, 109 "body": { 110 "id": "awesome-resp-id", 111 "seatbid": [ 112 { 113 "bid": [ 114 { 115 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 116 "impid": "1", 117 "price": 3.5, 118 "adm": "awesome-markup", 119 "adomain": [ 120 "awesome.com" 121 ], 122 "crid": "20", 123 "w":320, 124 "h":50 125 } 126 ], 127 "type": "banner", 128 "seat": "silvermob" 129 } 130 ], 131 "cur": "USD", 132 "ext": { 133 "responsetimemillis": { 134 "silvermob": 154 135 }, 136 "tmaxrequest": 1000 137 } 138 } 139 } 140 } 141 ], 142 "expectedBidResponses": [ 143 { 144 "bids":[ 145 { 146 "bid":{ 147 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 148 "impid": "1", 149 "price": 3.5, 150 "adm": "awesome-markup", 151 "adomain": [ 152 "awesome.com" 153 ], 154 "crid": "20", 155 "w":320, 156 "h":50 157 }, 158 "type": "banner" 159 } 160 ] 161 } 162 ] 163 } 164