github.com/prebid/prebid-server@v0.275.0/adapters/adf/adftest/exemplary/single-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [{ 5 "id": "test-imp-id", 6 "ext": { 7 "bidder": { 8 "mid": "828782" 9 } 10 }, 11 "banner": { 12 "format": [{ 13 "w": 300, 14 "h": 250 15 }] 16 } 17 }], 18 "site": { 19 "publisher": { 20 "id": "1" 21 }, 22 "page": "some-page-url" 23 }, 24 "device": { 25 "w": 1920, 26 "h": 800 27 } 28 }, 29 "httpCalls": [{ 30 "expectedRequest": { 31 "uri": "https://adx.adform.net/adx/openrtb", 32 "body": { 33 "id": "test-request-id", 34 "imp": [{ 35 "id": "test-imp-id", 36 "ext": { 37 "bidder": { 38 "mid": "828782" 39 } 40 }, 41 "banner": { 42 "format": [{ 43 "w": 300, 44 "h": 250 45 }] 46 }, 47 "tagid": "828782" 48 }], 49 "site": { 50 "publisher": { 51 "id": "1" 52 }, 53 "page": "some-page-url" 54 }, 55 "device": { 56 "w": 1920, 57 "h": 800 58 } 59 } 60 }, 61 "mockResponse": { 62 "status": 200, 63 "body": { 64 "id": "test-request-id", 65 "seatbid": [{ 66 "bid": [{ 67 "id": "test-bid-id", 68 "impid": "test-imp-id", 69 "price": 10, 70 "adm": "{banner html}", 71 "adomain": [ "test.com" ], 72 "crid": "test-creative-id", 73 "ext": { 74 "prebid": { 75 "type": "banner" 76 } 77 } 78 }] 79 }], 80 "cur": "USD" 81 } 82 } 83 }], 84 "expectedBidResponses": [{ 85 "currency": "USD", 86 "bids": [ 87 { 88 "bid": { 89 "id": "test-bid-id", 90 "impid": "test-imp-id", 91 "price": 10, 92 "adm": "{banner html}", 93 "crid": "test-creative-id", 94 "adomain": [ "test.com" ], 95 "ext": { 96 "prebid": { 97 "type": "banner" 98 } 99 } 100 }, 101 "type": "banner" 102 } 103 ] 104 }] 105 }