github.com/prebid/prebid-server/v2@v2.18.0/adapters/adview/adviewtest/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 "ifa":"00000000-0000-0000-0000-000000000000", 8 "language": "en", 9 "dnt": 0 10 }, 11 "tmax": 1000, 12 "user": { 13 "buyeruid": "awesome-user" 14 }, 15 "app": { 16 "publisher": { 17 "id": "123456789" 18 }, 19 "cat": [ 20 "IAB22-1" 21 ], 22 "bundle": "com.app.awesome", 23 "name": "Awesome App", 24 "domain": "awesomeapp.com", 25 "id": "123456789" 26 }, 27 "imp": [ 28 { 29 "id": "some-impression-id", 30 "banner": { 31 "w": 320, 32 "h": 50 33 }, 34 "ext": { 35 "bidder": { 36 "placementId": "posid00001", 37 "accountId": "accountid01" 38 } 39 } 40 } 41 ] 42 }, 43 "httpCalls": [ 44 { 45 "expectedRequest": { 46 "uri": "https://bid.adview.com/agent/thirdAdxService/accountid01", 47 "body": { 48 "id": "some-request-id", 49 "cur": ["USD"], 50 "device": { 51 "ua": "test-user-agent", 52 "ip": "123.123.123.123", 53 "ifa":"00000000-0000-0000-0000-000000000000", 54 "language": "en", 55 "dnt": 0 56 }, 57 "imp": [ 58 { 59 "id": "some-impression-id", 60 "banner": { 61 "w": 320, 62 "h": 50 63 }, 64 "tagid": "posid00001", 65 "ext": { 66 "bidder": { 67 "placementId": "posid00001", 68 "accountId": "accountid01" 69 } 70 } 71 } 72 ], 73 "app": { 74 "id": "123456789", 75 "name": "Awesome App", 76 "bundle": "com.app.awesome", 77 "domain": "awesomeapp.com", 78 "cat": [ 79 "IAB22-1" 80 ], 81 "publisher": { 82 "id": "123456789" 83 } 84 }, 85 "user": { 86 "buyeruid": "awesome-user" 87 }, 88 "tmax": 1000 89 }, 90 "impIDs":["some-impression-id"] 91 }, 92 "mockResponse": { 93 "status": 200, 94 "body": { 95 "id": "awesome-resp-id", 96 "seatbid": [ 97 { 98 "bid": [ 99 { 100 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 101 "impid": "some-impression-id", 102 "price": 3.5, 103 "adm": "awesome-markup", 104 "adomain": [ 105 "awesome.com" 106 ], 107 "crid": "20", 108 "w": 320, 109 "h": 50, 110 "mtype": 1, 111 "ext": { 112 "formattype": 0 113 } 114 } 115 ], 116 "type": "banner", 117 "seat": "adview" 118 } 119 ], 120 "cur": "USD", 121 "ext": { 122 "responsetimemillis": { 123 "adview": 154 124 }, 125 "tmaxrequest": 1000 126 } 127 } 128 } 129 } 130 ], 131 "expectedBidResponses": [ 132 { 133 "currency": "USD", 134 "bids": [ 135 { 136 "bid": { 137 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 138 "impid": "some-impression-id", 139 "price": 3.5, 140 "adm": "awesome-markup", 141 "adomain": [ 142 "awesome.com" 143 ], 144 "crid": "20", 145 "w": 320, 146 "h": 50, 147 "mtype": 1, 148 "ext": { 149 "formattype": 0 150 } 151 }, 152 "type": "banner" 153 } 154 ] 155 } 156 ] 157 }