github.com/prebid/prebid-server/v2@v2.18.0/adapters/yeahmobi/yeahmobitest/exemplary/simple-video.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "video": { 8 "w": 300, 9 "h": 250, 10 "mimes": [ 11 "video/mp4" 12 ] 13 }, 14 "ext": { 15 "bidder": { 16 "pubId": "fake-pub-id", 17 "zoneId": "sin" 18 } 19 } 20 } 21 ] 22 }, 23 24 "httpCalls": [ 25 { 26 "expectedRequest": { 27 "uri": "https://gw-sin-bid.yeahtargeter.com/prebid/bid", 28 "body": { 29 "id": "test-request-id", 30 "imp": [ 31 { 32 "id":"test-imp-id", 33 "video": { 34 "w": 300, 35 "h": 250, 36 "mimes": [ 37 "video/mp4" 38 ] 39 }, 40 "ext": { 41 "bidder": { 42 "pubId": "fake-pub-id", 43 "zoneId": "sin" 44 } 45 } 46 } 47 ] 48 }, 49 "impIDs":["test-imp-id"] 50 }, 51 "mockResponse": { 52 "status": 200, 53 "body": { 54 "id": "test-request-id", 55 "seatbid": [ 56 { 57 "seat": "ttx", 58 "bid": [{ 59 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 60 "impid": "test-imp-id", 61 "price": 1.2, 62 "adm": "some-ads", 63 "crid": "crid_testid" 64 }] 65 } 66 ], 67 "cur": "USD" 68 } 69 } 70 } 71 ], 72 73 "expectedBidResponses": [ 74 { 75 "currency": "USD", 76 "bids": [ 77 { 78 "bid": { 79 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 80 "impid": "test-imp-id", 81 "price": 1.2, 82 "adm": "some-ads", 83 "crid": "crid_testid" 84 }, 85 "type": "video" 86 } 87 ] 88 } 89 ] 90 }