github.com/prebid/prebid-server/v2@v2.18.0/adapters/aceex/aceextest/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 "accountid": "hash" 37 } 38 } 39 } 40 ] 41 }, 42 "httpCalls": [ 43 { 44 "expectedRequest": { 45 "headers": { 46 "Content-Type": [ 47 "application/json;charset=utf-8" 48 ], 49 "Accept": [ 50 "application/json" 51 ], 52 "X-Openrtb-Version": [ 53 "2.5" 54 ], 55 "User-Agent": [ 56 "test-user-agent" 57 ], 58 "X-Forwarded-For": [ 59 "123.123.123.123" 60 ] 61 }, 62 "uri": "http://us.example.com/bid?uqhash=hash", 63 "body": { 64 "id": "some-request-id", 65 "device": { 66 "ua": "test-user-agent", 67 "ip": "123.123.123.123", 68 "language": "en", 69 "dnt": 0 70 }, 71 "imp": [ 72 { 73 "id": "some-impression-id", 74 "banner": { 75 "w": 320, 76 "h": 50 77 }, 78 "tagid": "ogTAGID" 79 } 80 ], 81 "app": { 82 "id": "123456789", 83 "name": "Awesome App", 84 "bundle": "com.app.awesome", 85 "domain": "awesomeapp.com", 86 "cat": [ 87 "IAB22-1" 88 ], 89 "publisher": { 90 "id": "123456789" 91 } 92 }, 93 "user": { 94 "buyeruid": "awesome-user" 95 }, 96 "tmax": 1000 97 }, 98 "impIDs":["some-impression-id"] 99 }, 100 "mockResponse": { 101 "status": 200, 102 "body": { 103 "id": "awesome-resp-id", 104 "seatbid": [ 105 { 106 "bid": [ 107 { 108 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 109 "impid": "1", 110 "price": 3.5, 111 "adm": "awesome-markup", 112 "adomain": [ 113 "awesome.com" 114 ], 115 "crid": "20", 116 "w": 320, 117 "h": 50 118 } 119 ], 120 "type": "banner", 121 "seat": "aceex" 122 } 123 ], 124 "cur": "USD", 125 "ext": { 126 "responsetimemillis": { 127 "aceex": 154 128 }, 129 "tmaxrequest": 1000 130 } 131 } 132 } 133 } 134 ], 135 "expectedBidResponses": [ 136 { 137 "bids": [ 138 { 139 "bid": { 140 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 141 "impid": "1", 142 "price": 3.5, 143 "adm": "awesome-markup", 144 "adomain": [ 145 "awesome.com" 146 ], 147 "crid": "20", 148 "w": 320, 149 "h": 50 150 }, 151 "type": "banner" 152 } 153 ] 154 } 155 ] 156 }