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