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