github.com/prebid/prebid-server@v0.275.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        },
    99        "mockResponse": {
   100          "status": 200,
   101          "body": {
   102            "id": "test-resp-id",
   103            "seatbid": [
   104              {
   105                "bid": [
   106                  {
   107                    "id": "test-imp-id",
   108                    "impid": "test-not-found-imp-id",
   109                    "price": 3.5,
   110                    "adm": "test-imp-mrkp",
   111                    "adomain": [
   112                      "mock-site.com"
   113                    ],
   114                    "crid": "20",
   115                    "w": 1280,
   116                    "h": 720
   117                  }
   118                ],
   119                "seat": "aceex"
   120              }
   121            ],
   122            "cur": "USD"
   123          }
   124        }
   125      }
   126    ],
   127    "expectedMakeBidsErrors": [
   128      {
   129        "value": "Failed to find impression: \"test-not-found-imp-id\"",
   130        "comparison": "literal"
   131      }
   132    ]
   133  }