github.com/prebid/prebid-server/v2@v2.18.0/adapters/adtrgtme/adtrgtmetest/supplemental/not-found-imp.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-req-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123", 7 "language": "en", 8 "dnt": 0 9 }, 10 "tmax": 1000, 11 "user": { 12 "buyeruid": "test-user-id" 13 }, 14 "site": { 15 "id": "123456789", 16 "page": "mock-site.com", 17 "publisher": { 18 "id": "123456789" 19 } 20 }, 21 "imp": [ 22 { 23 "id": "test-unsupported-imp-id", 24 "tagid": "test-adtarget-tag-id", 25 "video": { 26 "mimes": [ 27 "video/mp4" 28 ], 29 "w": 640, 30 "h": 480, 31 "minduration": 120, 32 "maxduration": 150 33 }, 34 "ext": { 35 "bidder": { 36 "site_id": 123456789 37 } 38 } 39 } 40 ] 41 }, 42 "httpCalls": [ 43 { 44 "expectedRequest": { 45 "headers": { 46 "Content-Type": [ 47 "application/json;charset=utf-8" 48 ], 49 "Accept": [ 50 "application/json" 51 ], 52 "X-Openrtb-Version": [ 53 "2.5" 54 ], 55 "User-Agent": [ 56 "test-user-agent" 57 ], 58 "X-Forwarded-For": [ 59 "123.123.123.123" 60 ] 61 }, 62 "uri": "http://localhost/ssp?s=123456789&prebid", 63 "body": { 64 "id": "test-req-id", 65 "device": { 66 "ua": "test-user-agent", 67 "ip": "123.123.123.123", 68 "language": "en", 69 "dnt": 0 70 }, 71 "imp": [ 72 { 73 "id": "test-unsupported-imp-id", 74 "tagid": "test-adtarget-tag-id", 75 "video": { 76 "mimes": [ 77 "video/mp4" 78 ], 79 "minduration": 120, 80 "maxduration": 150, 81 "w": 640, 82 "h": 480 83 } 84 } 85 ], 86 "site": { 87 "id": "123456789", 88 "page": "mock-site.com", 89 "publisher": { 90 "id": "123456789" 91 } 92 }, 93 "user": { 94 "buyeruid": "test-user-id" 95 }, 96 "tmax": 1000 97 }, 98 "impIDs":["test-unsupported-imp-id"] 99 }, 100 "mockResponse": { 101 "status": 200, 102 "body": { 103 "id": "test-resp-id", 104 "seatbid": [ 105 { 106 "bid": [ 107 { 108 "id": "test-imp-id", 109 "impid": "test-not-found-imp-id", 110 "price": 3.5, 111 "adm": "test-imp-mrkp", 112 "adomain": [ 113 "mock-site.com" 114 ], 115 "crid": "20", 116 "w": 1280, 117 "h": 720 118 } 119 ], 120 "seat": "aceex" 121 } 122 ], 123 "cur": "USD" 124 } 125 } 126 } 127 ], 128 "expectedMakeBidsErrors": [ 129 { 130 "value": "Failed to find impression: \"test-not-found-imp-id\"", 131 "comparison": "literal" 132 } 133 ] 134 }