github.com/prebid/prebid-server/v2@v2.18.0/adapters/smrtconnect/smrtconnecttest/exemplary/audio-web.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "site": { 5 "page": "prebid.org" 6 }, 7 "user": { 8 "buyeruid": "be5e209ad46927520000000000000000" 9 }, 10 "imp": [ 11 { 12 "id": "test-imp-id", 13 "audio": { 14 "mimes": ["audio/mp4"], 15 "protocols": [9,10] 16 }, 17 "ext": { 18 "bidder": { 19 "supply_id": "1" 20 } 21 } 22 } 23 ] 24 }, 25 26 "httpCalls": [ 27 { 28 "expectedRequest": { 29 "uri": "http://test.smrtconnect.com/openrtb2/auction?supply_id=1", 30 "body": { 31 "id": "test-request-id", 32 "site": { 33 "page": "prebid.org" 34 }, 35 "user": { 36 "buyeruid": "be5e209ad46927520000000000000000" 37 }, 38 "imp": [ 39 { 40 "id": "test-imp-id", 41 "audio": { 42 "mimes": ["audio/mp4"], 43 "protocols": [9,10] 44 } 45 } 46 ] 47 }, 48 "impIDs":["test-imp-id"] 49 }, 50 "mockResponse": { 51 "status": 200, 52 "body": { 53 "id": "test-request-id", 54 "seatbid": [ 55 { 56 "seat": "smrtconnect", 57 "bid": [{ 58 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 59 "impid": "test-imp-id", 60 "price": 0.500000, 61 "adm": "some-test-ad", 62 "crid": "test-crid", 63 "mtype": 3 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": 0.5, 82 "adm": "some-test-ad", 83 "crid": "test-crid", 84 "mtype": 3 85 }, 86 "type": "audio" 87 } 88 ] 89 } 90 ] 91 }