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