github.com/prebid/prebid-server/v2@v2.18.0/adapters/silvermob/silvermobtest/exemplary/banner-multi-app.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        "app": {
    15          "publisher": {
    16            "id": "123456789"
    17          },
    18          "cat": [
    19            "IAB22-1"
    20          ],
    21          "bundle": "com.app.awesome",
    22          "name": "Awesome App",
    23          "domain": "awesomeapp.com",
    24          "id": "123456789"
    25        },
    26        "imp": [
    27          {
    28            "id": "some-impression-id",
    29            "tagid": "ogTAGID",
    30            "banner": {
    31              "w":320,
    32              "h":50
    33            },
    34            "ext": {
    35              "bidder": {
    36                "host": "eu",
    37                "zoneid": "0"
    38              }
    39            }
    40          },
    41          {
    42              "id": "another-impression-id",
    43              "tagid": "ogTAGID",
    44              "banner": {
    45                "w":320,
    46                "h":480
    47              },
    48              "ext": {
    49                "bidder": {
    50                  "host": "eu",
    51                  "zoneid": "1"
    52                }
    53              }
    54            }
    55        ]
    56      },
    57      "httpCalls": [
    58        {
    59          "expectedRequest": {
    60            "headers": {
    61              "Content-Type": [
    62                "application/json;charset=utf-8"
    63              ],
    64              "Accept": [
    65                "application/json"
    66              ],
    67              "X-Openrtb-Version": [
    68                "2.5"
    69              ],
    70              "User-Agent": [
    71                "test-user-agent"
    72              ],
    73              "X-Forwarded-For": [
    74                "123.123.123.123"
    75              ]
    76            },
    77            "uri": "http://eu.example.com/api/dsp/bid/0",
    78            "body": {
    79              "id": "some-request-id",
    80              "device": {
    81                "ua": "test-user-agent",
    82                "ip": "123.123.123.123",
    83                "language": "en",
    84                "dnt": 0
    85              },
    86              "imp": [
    87                {
    88                  "id": "some-impression-id",
    89                  "banner": {
    90                      "w":320,
    91                      "h":50
    92                  },
    93                  "tagid": "ogTAGID",
    94                  "ext": {
    95                    "bidder": {
    96                      "host": "eu",
    97                      "zoneid": "0"
    98                    }
    99                  }
   100                }
   101              ],
   102              "app": {
   103                "id": "123456789",
   104                "name": "Awesome App",
   105                "bundle": "com.app.awesome",
   106                "domain": "awesomeapp.com",
   107                "cat": [
   108                  "IAB22-1"
   109                ],
   110                "publisher": {
   111                  "id": "123456789"
   112                }
   113              },
   114              "user": {
   115                "buyeruid": "awesome-user"
   116              },
   117              "tmax": 1000
   118            },
   119            "impIDs":["some-impression-id"]
   120          },
   121          "mockResponse": {
   122            "status": 200,
   123            "body": {
   124              "id": "awesome-resp-id",
   125              "seatbid": [
   126                {
   127                  "bid": [
   128                    {
   129                      "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   130                      "impid": "some-impression-id",
   131                      "price": 3.5,
   132                      "adm": "awesome-markup",
   133                      "adomain": [
   134                        "awesome.com"
   135                      ],
   136                      "crid": "20",
   137                      "w":320,
   138                      "h":50
   139                    }
   140                  ],
   141                "type": "banner",
   142                  "seat": "silvermob"
   143                }
   144              ],
   145              "cur": "USD",
   146              "ext": {
   147                "responsetimemillis": {
   148                  "silvermob": 154
   149                },
   150                "tmaxrequest": 1000
   151              }
   152            }
   153          }
   154        },
   155        {
   156          "expectedRequest": {
   157            "headers": {
   158              "Content-Type": [
   159                "application/json;charset=utf-8"
   160              ],
   161              "Accept": [
   162                "application/json"
   163              ],
   164              "X-Openrtb-Version": [
   165                "2.5"
   166              ],
   167              "User-Agent": [
   168                "test-user-agent"
   169              ],
   170              "X-Forwarded-For": [
   171                "123.123.123.123"
   172              ]
   173            },
   174            "uri": "http://eu.example.com/api/dsp/bid/1",
   175            "body": {
   176              "id": "some-request-id",
   177              "device": {
   178                "ua": "test-user-agent",
   179                "ip": "123.123.123.123",
   180                "language": "en",
   181                "dnt": 0
   182              },
   183              "imp": [
   184                {
   185                  "id": "another-impression-id",
   186                  "banner": {
   187                      "w":320,
   188                      "h":480
   189                  },
   190                  "tagid": "ogTAGID",
   191                  "ext": {
   192                    "bidder": {
   193                      "host": "eu",
   194                      "zoneid": "1"
   195                    }
   196                  }
   197                }
   198              ],
   199              "app": {
   200                "id": "123456789",
   201                "name": "Awesome App",
   202                "bundle": "com.app.awesome",
   203                "domain": "awesomeapp.com",
   204                "cat": [
   205                  "IAB22-1"
   206                ],
   207                "publisher": {
   208                  "id": "123456789"
   209                }
   210              },
   211              "user": {
   212                "buyeruid": "awesome-user"
   213              },
   214              "tmax": 1000
   215            },
   216            "impIDs":["another-impression-id"]
   217          },
   218          "mockResponse": {
   219            "status": 200,
   220            "body": {
   221              "id": "awesome-resp-id",
   222              "seatbid": [
   223                {
   224                  "bid": [
   225                    {
   226                      "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   227                      "impid": "another-impression-id",
   228                      "price": 3.5,
   229                      "adm": "awesome-markup",
   230                      "adomain": [
   231                        "awesome.com"
   232                      ],
   233                      "crid": "21",
   234                      "w":320,
   235                      "h":480
   236                    }
   237                  ],
   238                "type": "banner",
   239                  "seat": "silvermob"
   240                }
   241              ],
   242              "cur": "USD",
   243              "ext": {
   244                "responsetimemillis": {
   245                  "silvermob": 154
   246                },
   247                "tmaxrequest": 1000
   248              }
   249            }
   250          }
   251        }
   252      ],
   253      "expectedBidResponses": [ 
   254          
   255        {
   256          "bids":[
   257            {
   258              "bid":{
   259                "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   260                "impid": "some-impression-id",
   261                "price": 3.5,
   262                "adm": "awesome-markup",
   263                "adomain": [
   264                  "awesome.com"
   265                ],
   266                "crid": "20",
   267                "w":320,
   268                "h":50
   269              },
   270              "type": "banner"
   271            }
   272          ]
   273        },
   274        {
   275          "bids": [
   276              {
   277                  "bid":{
   278                    "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   279                    "impid": "another-impression-id",
   280                    "price": 3.5,
   281                    "adm": "awesome-markup",
   282                    "adomain": [
   283                      "awesome.com"
   284                    ],
   285                    "crid": "21",
   286                    "w":320,
   287                    "h":480
   288                  },
   289                  "type": "banner"
   290                }
   291          ]
   292      }
   293      ]
   294    }
   295