github.com/prebid/prebid-server@v0.275.0/adapters/admixer/admixertest/exemplary/simple-app-audio.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "app": { 5 "bundle": "com.prebid" 6 }, 7 "device": { 8 "ifa":"ec943cb9-61ec-460f-a925-6489c3fcc4e3" 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 "zone": "473e443c-43d0-423d-a8d7-a302637a01d8" 20 } 21 } 22 } 23 ] 24 }, 25 26 "httpCalls": [ 27 { 28 "expectedRequest": { 29 "uri": "http://inv-nets.admixer.net/pbs.aspx", 30 "body": { 31 "id": "test-request-id", 32 "app": { 33 "bundle": "com.prebid" 34 }, 35 "device": { 36 "ifa":"ec943cb9-61ec-460f-a925-6489c3fcc4e3" 37 }, 38 "imp": [ 39 { 40 "id": "test-imp-id", 41 "audio": { 42 "mimes": ["audio/mp4"], 43 "protocols": [9,10] 44 }, 45 "tagid": "473e443c-43d0-423d-a8d7-a302637a01d8" 46 } 47 ] 48 } 49 }, 50 "mockResponse": { 51 "status": 200, 52 "body": { 53 "id": "test-request-id", 54 "seatbid": [ 55 { 56 "seat": "admixer", 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 }] 64 } 65 ], 66 "cur": "USD" 67 } 68 } 69 } 70 ], 71 72 "expectedBidResponses": [ 73 { 74 "currency": "USD", 75 "bids": [ 76 { 77 "bid": { 78 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 79 "impid": "test-imp-id", 80 "price": 0.5, 81 "adm": "some-test-ad", 82 "crid": "test-crid" 83 }, 84 "type": "audio" 85 } 86 ] 87 } 88 ] 89 }