github.com/prebid/prebid-server@v0.275.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 }, 88 "mockResponse": { 89 "status": 200, 90 "body": { 91 "id": "awesome-resp-id", 92 "seatbid": [ 93 { 94 "bid": [ 95 { 96 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 97 "impid": "1", 98 "price": 3.5, 99 "adm": "awesome-markup", 100 "adomain": [ 101 "awesome.com" 102 ], 103 "crid": "20", 104 "w": 320, 105 "h": 50 106 } 107 ], 108 "type": "banner", 109 "seat": "acuityads" 110 } 111 ], 112 "cur": "USD", 113 "ext": { 114 "responsetimemillis": { 115 "acuityads": 154 116 }, 117 "tmaxrequest": 1000 118 } 119 } 120 } 121 } 122 ], 123 "expectedBidResponses": [ 124 { 125 "bids":[ 126 { 127 "bid": { 128 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 129 "impid": "1", 130 "price": 3.5, 131 "adm": "awesome-markup", 132 "crid": "20", 133 "adomain": [ 134 "awesome.com" 135 ], 136 "w": 320, 137 "h": 50 138 }, 139 "type": "banner" 140 } 141 ] 142 } 143 ] 144 }