github.com/prebid/prebid-server/v2@v2.18.0/adapters/invibes/invibestest/exemplary/basic-ad.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "site": { 5 "page": "https://publisher.com/url" 6 }, 7 "user": { 8 "id": "id123", 9 "buyerUid": "123" 10 }, 11 "regs": { 12 "ext": { 13 "gdpr": 1 14 } 15 }, 16 "imp": [ 17 { 18 "id": "test-imp-id", 19 "banner": { 20 "w": 300, 21 "h": 150 22 }, 23 "ext": { 24 "bidder": { 25 "placementId": "2eb6bd58-865c-47ce-af7f-a918108c3fd2" 26 } 27 } 28 } 29 ] 30 }, 31 "httpCalls": [ 32 { 33 "expectedRequest": { 34 "uri": "https://bid.videostep.com/bid/ServerBidAdContent", 35 "body": { 36 "BidParamsJson": "{\"PlacementIds\":[\"2eb6bd58-865c-47ce-af7f-a918108c3fd2\"],\"BidVersion\":\"4\",\"Properties\":{\"2eb6bd58-865c-47ce-af7f-a918108c3fd2\":{\"Formats\":[{\"w\":300,\"h\":150}],\"ImpId\":\"test-imp-id\"}}}", 37 "Bvid": "", 38 "Gdpr": true, 39 "GdprConsent": "", 40 "Height": "", 41 "IsAmp": false, 42 "Kw": "", 43 "Lid": "123", 44 "Location": "https://publisher.com/url", 45 "IsTestBid": false, 46 "InvibBVLog": false, 47 "VideoAdDebug": false, 48 "Width": "" 49 }, 50 "impIDs":["test-imp-id"] 51 }, 52 "mockResponse": { 53 "status": 200, 54 "body": { 55 "currency": "EUR", 56 "typedBids": [ 57 { 58 "bid": { 59 "id": "1234", 60 "impid": "test-imp-id", 61 "price": 0.5, 62 "adm": "<div>abc</div>", 63 "crid": "29681110", 64 "w": 300, 65 "h": 250 66 }, 67 "dealPriority": 0 68 } 69 ] 70 } 71 } 72 } 73 ], 74 "expectedBidResponses": [ 75 { 76 "currency": "EUR", 77 "bids": [ 78 { 79 "bid": { 80 "id": "1234", 81 "impid": "test-imp-id", 82 "price": 0.5, 83 "adm": "<div>abc</div>", 84 "crid": "29681110", 85 "w": 300, 86 "h": 250 87 }, 88 "type": "banner" 89 } 90 ] 91 } 92 ] 93 }