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

     1  
     2  {
     3    "mockBidRequest": {
     4      "id": "some-request-id",
     5      "device": {
     6        "ua": "test-user-agent",
     7        "ip": "123.123.123.123",
     8        "language": "en",
     9        "dnt": 0
    10      },
    11      "tmax": 1000,
    12      "user": {
    13        "buyeruid": "awesome-user"
    14      },
    15      "app": {
    16        "publisher": {
    17          "id": "123456789"
    18        },
    19        "cat": [
    20          "IAB22-1"
    21        ],
    22        "bundle": "com.app.awesome",
    23        "name": "Awesome App",
    24        "domain": "awesomeapp.com",
    25        "id": "123456789"
    26      },
    27      "imp": [
    28        {
    29          "id": "some-impression-id",
    30          "tagid": "ogTAGID",
    31          "banner": {
    32            "w":320,
    33            "h":50
    34          },
    35          "ext": {
    36            "bidder": {
    37              "accountid": "hash"
    38            }
    39          }
    40        }
    41      ]
    42    },
    43  
    44    "httpCalls": [{
    45      "expectedRequest": {
    46        "headers": {
    47          "Content-Type": [
    48            "application/json;charset=utf-8"
    49          ],
    50          "Accept": [
    51            "application/json"
    52          ],
    53          "X-Openrtb-Version": [
    54            "2.5"
    55          ],
    56          "User-Agent": [
    57            "test-user-agent"
    58          ],
    59          "X-Forwarded-For": [
    60            "123.123.123.123"
    61          ]
    62        },
    63        "uri": "http://us.example.com/bid?uqhash=hash",
    64        "body": {
    65          "id": "some-request-id",
    66          "device": {
    67            "ua": "test-user-agent",
    68            "ip": "123.123.123.123",
    69            "language": "en",
    70            "dnt": 0
    71          },
    72          "imp": [
    73            {
    74              "id": "some-impression-id",
    75              "banner": {
    76                  "w":320,
    77                  "h":50
    78              },
    79              "tagid": "ogTAGID"
    80            }
    81          ],
    82          "app": {
    83            "id": "123456789",
    84            "name": "Awesome App",
    85            "bundle": "com.app.awesome",
    86            "domain": "awesomeapp.com",
    87            "cat": [
    88              "IAB22-1"
    89            ],
    90            "publisher": {
    91              "id": "123456789"
    92            }
    93          },
    94          "user": {
    95            "buyeruid": "awesome-user"
    96          },
    97          "tmax": 1000
    98        },
    99        "impIDs":["some-impression-id"]
   100      },
   101      "mockResponse": {
   102        "status": 200,
   103        "body": "invalid response"
   104      }
   105    }],
   106    "expectedMakeBidsErrors": [
   107      {
   108        "value": "Bad Server Response",
   109        "comparison": "literal"
   110      }
   111    ]
   112  }