github.com/prebid/prebid-server/v2@v2.18.0/adapters/kayzen/kayzentest/exemplary/banner-web.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-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": "0000-000-000-0000"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "banner": {
    24            "w":320,
    25            "h":50
    26          },
    27          "ext": {
    28            "bidder": {
    29              "zone": "dc",
    30              "exchange": "ex"
    31            }
    32          }
    33        }
    34      ]
    35    },
    36    "httpCalls": [
    37      {
    38        "expectedRequest": {
    39          "headers": {
    40            "Content-Type": [
    41              "application/json;charset=utf-8"
    42            ],
    43            "Accept": [
    44              "application/json"
    45            ]
    46          },
    47          "uri": "https://example-dc.com/?exchange=ex",
    48          "body": {
    49            "id": "some-request-id",
    50            "device": {
    51              "ua": "test-user-agent",
    52              "ip": "123.123.123.123",
    53              "language": "en",
    54              "dnt": 0
    55            },
    56            "imp": [
    57              {
    58                "id": "some-impression-id",
    59                "banner": {
    60                  "w":320,
    61                  "h":50
    62                }
    63              }
    64            ],
    65            "site": {
    66              "page": "test.com",
    67              "publisher": {
    68                "id": "123456789"
    69              }
    70            },
    71            "user": {
    72              "buyeruid": "0000-000-000-0000"
    73            },
    74            "tmax": 1000
    75          },
    76          "impIDs":["some-impression-id"]
    77        },
    78        "mockResponse": {
    79          "status": 200,
    80          "body": {
    81            "id": "awesome-resp-id",
    82            "seatbid": [
    83              {
    84                "bid": [
    85                  {
    86                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    87                    "impid": "1",
    88                    "price": 3.5,
    89                    "adm": "awesome-markup",
    90                    "adomain": [
    91                      "awesome.com"
    92                    ],
    93                    "crid": "20",
    94                    "w": 320,
    95                    "h": 50
    96                  }
    97                ],
    98                "type": "banner",
    99                "seat": "kayzen-prebid"
   100              }
   101            ],
   102            "cur": "USD",
   103            "ext": {
   104            }
   105          }
   106        }
   107      }
   108    ],
   109    "expectedBidResponses": [
   110      {
   111        "bids":[
   112          {
   113            "bid":  {
   114              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   115              "impid": "1",
   116              "price": 3.5,
   117              "adm": "awesome-markup",
   118              "crid": "20",
   119              "adomain": [
   120                "awesome.com"
   121              ],
   122              "w": 320,
   123              "h": 50
   124            },
   125            "type": "banner"
   126          }
   127        ]
   128      }
   129    ]
   130  }