github.com/prebid/prebid-server/v2@v2.18.0/adapters/pangle/pangletest/exemplary/app_video_instl.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "app": { 5 "bundle": "com.prebid" 6 }, 7 "device": { 8 "ifa": "87857b31-8942-4646-ae80-ab9c95bf3fab" 9 }, 10 "imp": [ 11 { 12 "id": "test-imp-id", 13 "video": { 14 "mimes": [ 15 "video/mp4" 16 ], 17 "protocols": [ 18 2, 19 5 20 ], 21 "w": 1024, 22 "h": 576, 23 "ext": { 24 "foo": "bar" 25 } 26 }, 27 "instl": 1, 28 "ext": { 29 "bidder": { 30 "token": "123" 31 } 32 } 33 } 34 ] 35 }, 36 "httpCalls": [ 37 { 38 "expectedRequest": { 39 "uri": "https://pangle.io/api/get_ads", 40 "headers": { 41 "Content-Type": [ 42 "application/json" 43 ], 44 "TOKEN": [ 45 "123" 46 ] 47 }, 48 "body": { 49 "id": "test-request-id", 50 "app": { 51 "bundle": "com.prebid" 52 }, 53 "device": { 54 "ifa": "87857b31-8942-4646-ae80-ab9c95bf3fab" 55 }, 56 "imp": [ 57 { 58 "id": "test-imp-id", 59 "video": { 60 "mimes": [ 61 "video/mp4" 62 ], 63 "protocols": [ 64 2, 65 5 66 ], 67 "w": 1024, 68 "h": 576, 69 "ext": { 70 "foo": "bar" 71 } 72 }, 73 "instl": 1, 74 "ext": { 75 "adtype": 8, 76 "bidder": { 77 "token": "123" 78 }, 79 "is_prebid": true, 80 "prebid": null 81 } 82 } 83 ] 84 }, 85 "impIDs":["test-imp-id"] 86 }, 87 "mockResponse": { 88 "status": 200, 89 "body": { 90 "id": "test-request-id", 91 "seatbid": [ 92 { 93 "seat": "seat-id", 94 "bid": [ 95 { 96 "id": "1", 97 "impid": "test-imp-id", 98 "adid": "11110126", 99 "price": 0.500000, 100 "adm": "some-test-ad", 101 "crid": "test-crid", 102 "h": 250, 103 "w": 300, 104 "ext": { 105 "pangle": { 106 "adtype": 8 107 } 108 } 109 } 110 ] 111 } 112 ], 113 "cur": "USD" 114 } 115 } 116 } 117 ], 118 "expectedBidResponses": [ 119 { 120 "currency": "USD", 121 "bids": [ 122 { 123 "bid": { 124 "id": "1", 125 "impid": "test-imp-id", 126 "adid": "11110126", 127 "price": 0.5, 128 "adm": "some-test-ad", 129 "crid": "test-crid", 130 "w": 300, 131 "h": 250, 132 "ext": { 133 "pangle": { 134 "adtype": 8 135 } 136 } 137 }, 138 "type": "video" 139 } 140 ] 141 } 142 ] 143 }