github.com/prebid/prebid-server/v2@v2.18.0/adapters/aceex/aceextest/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": "awesome-user"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "tagid": "ogTAGID",
    24          "banner": {
    25            "w":320,
    26            "h":50
    27          },
    28          "ext": {
    29            "bidder": {
    30              "accountid": "hash"
    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            "X-Openrtb-Version": [
    47              "2.5"
    48            ],
    49            "User-Agent": [
    50              "test-user-agent"
    51            ],
    52            "X-Forwarded-For": [
    53              "123.123.123.123"
    54            ]
    55          },
    56          "uri": "http://us.example.com/bid?uqhash=hash",
    57          "body": {
    58            "id": "some-request-id",
    59            "device": {
    60              "ua": "test-user-agent",
    61              "ip": "123.123.123.123",
    62              "language": "en",
    63              "dnt": 0
    64            },
    65            "imp": [
    66              {
    67                "id": "some-impression-id",
    68                "tagid": "ogTAGID",
    69                "banner": {
    70                  "w":320,
    71                  "h":50
    72                }
    73              }
    74            ],
    75            "site": {
    76              "page": "test.com",
    77              "publisher": {
    78                "id": "123456789"
    79              }
    80            },
    81            "user": {
    82              "buyeruid": "awesome-user"
    83            },
    84            "tmax": 1000
    85          },
    86          "impIDs":["some-impression-id"]
    87        },
    88        "mockResponse": {
    89          "status": 200,
    90          "body": {
    91            "id": "awesome-resp-id",
    92            "seatbid": [
    93              {
    94                "bid": [
    95                  {
    96                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    97                    "impid": "1",
    98                    "price": 3.5,
    99                    "adm": "awesome-markup",
   100                    "adomain": [
   101                      "awesome.com"
   102                    ],
   103                    "crid": "20",
   104                    "w": 320,
   105                    "h": 50
   106                  }
   107                ],
   108                "type": "banner",
   109                "seat": "aceex"
   110              }
   111            ],
   112            "cur": "USD",
   113            "ext": {
   114              "responsetimemillis": {
   115                "aceex": 154
   116              },
   117              "tmaxrequest": 1000
   118            }
   119          }
   120        }
   121      }
   122    ],
   123    "expectedBidResponses": [
   124      {
   125        "bids":[
   126          {
   127            "bid":  {
   128              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   129              "impid": "1",
   130              "price": 3.5,
   131              "adm": "awesome-markup",
   132              "crid": "20",
   133              "adomain": [
   134                "awesome.com"
   135              ],
   136              "w": 320,
   137              "h": 50
   138            },
   139            "type": "banner"
   140          }
   141        ]
   142      }
   143    ]
   144  }