github.com/prebid/prebid-server/v2@v2.18.0/adapters/bliink/bliinktest/exemplary/banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123"
     7      },
     8      "user": {
     9        "buyeruid": "awesome-user",
    10        "ext": {
    11          "consent": "gdprConsentString"
    12        }
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "tagid": "TAGID",
    24          "banner": {
    25            "w": 320,
    26            "h": 50
    27          }
    28        }
    29      ]
    30    },
    31    "httpCalls": [
    32      {
    33        "expectedRequest": {
    34          "headers": {
    35            "Content-Type": [
    36              "application/json;charset=utf-8"
    37            ],
    38            "Accept": [
    39              "application/json"
    40            ],
    41            "X-Openrtb-Version": [
    42              "2.5"
    43            ]
    44          },
    45          "uri": "http://biddertest.url/bid",
    46          "body": {
    47            "id": "some-request-id",
    48            "device": {
    49              "ua": "test-user-agent",
    50              "ip": "123.123.123.123"
    51            },
    52            "imp": [
    53              {
    54                "id": "some-impression-id",
    55                "banner": {
    56                  "w": 320,
    57                  "h": 50
    58                },
    59                "tagid": "TAGID"
    60              }
    61            ],
    62            "site": {
    63              "page": "test.com",
    64              "publisher": {
    65                "id": "123456789"
    66              }
    67            },
    68            "user": {
    69              "buyeruid": "awesome-user",
    70              "ext": {
    71                "consent": "gdprConsentString"
    72              }
    73            }
    74          },
    75          "impIDs":["some-impression-id"]
    76        },
    77        "mockResponse": {
    78          "status": 200,
    79          "body": {
    80            "id": "awesome-resp-id",
    81            "seatbid": [
    82              {
    83                "bid": [
    84                  {
    85                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    86                    "impid": "some-impression-id",
    87                    "price": 0.9,
    88                    "adm": "awesome-markup",
    89                    "adomain": [
    90                      "awesome.com"
    91                    ],
    92                    "crid": "20",
    93                    "w": 320,
    94                    "h": 50
    95                  }
    96                ],
    97                "type": "banner",
    98                "seat": "bliink"
    99              }
   100            ],
   101            "cur": "EUR"
   102          }
   103        }
   104      }
   105    ],
   106    "expectedBidResponses": [
   107      {
   108        "bids": [
   109          {
   110            "bid": {
   111              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   112              "impid": "some-impression-id",
   113              "price": 0.9,
   114              "adm": "awesome-markup",
   115              "adomain": [
   116                "awesome.com"
   117              ],
   118              "crid": "20",
   119              "w": 320,
   120              "h": 50
   121            },
   122            "type": "banner"
   123          }
   124        ]
   125      }
   126    ]
   127  }