github.com/prebid/prebid-server/v2@v2.18.0/adapters/acuityads/acuityadstest/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": "ep1", 37 "accountid": "hash" 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://ep1.example.com/bid?token=hash", 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 } 81 ], 82 "app": { 83 "id": "123456789", 84 "name": "Awesome App", 85 "bundle": "com.app.awesome", 86 "domain": "awesomeapp.com", 87 "cat": [ 88 "IAB22-1" 89 ], 90 "publisher": { 91 "id": "123456789" 92 } 93 }, 94 "user": { 95 "buyeruid": "awesome-user" 96 }, 97 "tmax": 1000 98 }, 99 "impIDs":["some-impression-id"] 100 }, 101 "mockResponse": { 102 "status": 200, 103 "body": { 104 "id": "awesome-resp-id", 105 "seatbid": [ 106 { 107 "bid": [ 108 { 109 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 110 "impid": "1", 111 "price": 3.5, 112 "adm": "awesome-markup", 113 "adomain": [ 114 "awesome.com" 115 ], 116 "crid": "20", 117 "w": 320, 118 "h": 50 119 } 120 ], 121 "type": "banner", 122 "seat": "acuityads" 123 } 124 ], 125 "cur": "USD", 126 "ext": { 127 "responsetimemillis": { 128 "acuityads": 154 129 }, 130 "tmaxrequest": 1000 131 } 132 } 133 } 134 } 135 ], 136 "expectedBidResponses": [ 137 { 138 "bids": [ 139 { 140 "bid": { 141 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 142 "impid": "1", 143 "price": 3.5, 144 "adm": "awesome-markup", 145 "adomain": [ 146 "awesome.com" 147 ], 148 "crid": "20", 149 "w": 320, 150 "h": 50 151 }, 152 "type": "banner" 153 } 154 ] 155 } 156 ] 157 }