github.com/prebid/prebid-server/v2@v2.18.0/adapters/videoheroes/videoheroestest/supplemental/invalid-response.json (about)

     1  
     2  {
     3    "mockBidRequest": {
     4      "id": "request-id",
     5      "app": {
     6        "publisher": {
     7          "id": "123456789"
     8        },
     9        "cat": [
    10          "IAB9-1"
    11        ],
    12        "bundle": "com.app.test",
    13        "name": "Test App",
    14        "id": "12345678"
    15      },
    16      "device": {
    17        "ua": "useragent",
    18        "ip": "100.100.100.100",
    19        "language": "en"
    20      },
    21      "tmax": 1000,
    22      "user": {
    23        "id": "some-user"
    24      },
    25      "imp": [
    26        {
    27          "id": "impression-id",
    28          "tagid": "tid",
    29          "banner": {
    30            "w":320,
    31            "h":50
    32          },
    33          "ext": {
    34            "bidder": {
    35              "placementId": "f897beb0daba0253d8e59a098eef9311"
    36            }
    37          }
    38        }
    39      ]
    40    },
    41  
    42    "httpCalls": [{
    43      "expectedRequest": {
    44        "headers": {
    45          "Content-Type": [
    46            "application/json;charset=utf-8"
    47          ],
    48          "Accept": [
    49            "application/json"
    50          ]
    51        },
    52        "uri": "http://point.contextualadv.com/?t=3&partner=f897beb0daba0253d8e59a098eef9311",
    53        "body": {
    54          "id": "request-id",
    55          "device": {
    56            "ua": "useragent",
    57            "ip": "100.100.100.100",
    58            "language": "en"
    59          },
    60          "imp": [
    61            {
    62              "id": "impression-id",
    63              "banner": {
    64                  "w":320,
    65                  "h":50
    66              },
    67              "tagid": "tid"
    68            }
    69          ],
    70          "app": {
    71            "publisher": {
    72              "id": "123456789"
    73            },
    74            "cat": [
    75              "IAB9-1"
    76            ],
    77            "bundle": "com.app.test",
    78            "name": "Test App",
    79            "id": "12345678"
    80          },
    81          "user": {
    82            "id": "some-user"
    83          },
    84          "tmax": 1000
    85        },
    86        "impIDs":["impression-id"]
    87      },
    88      "mockResponse": {
    89        "status": 200,
    90        "body": "invalid response"
    91      }
    92    }],
    93    "expectedMakeBidsErrors": [
    94      {
    95        "value": "Bad Server Response",
    96        "comparison": "literal"
    97      }
    98    ]
    99  }