github.com/prebid/prebid-server/v2@v2.18.0/adapters/smrtconnect/smrtconnecttest/exemplary/banner-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              "supply_id": "1"
    37            }
    38          }
    39        }
    40      ]
    41    },
    42    "httpCalls": [
    43      {
    44        "expectedRequest": {
    45          "uri": "http://test.smrtconnect.com/openrtb2/auction?supply_id=1",
    46          "body": {
    47            "id": "some-request-id",
    48            "device": {
    49              "ua": "test-user-agent",
    50              "ip": "123.123.123.123",
    51              "language": "en",
    52              "dnt": 0
    53            },
    54            "imp": [
    55              {
    56                "id": "some-impression-id",
    57                "banner": {
    58                  "w": 320,
    59                  "h": 50
    60                },
    61                "tagid": "ogTAGID"
    62              }
    63            ],
    64            "app": {
    65              "id": "123456789",
    66              "name": "Awesome App",
    67              "bundle": "com.app.awesome",
    68              "domain": "awesomeapp.com",
    69              "cat": [
    70                "IAB22-1"
    71              ],
    72              "publisher": {
    73                "id": "123456789"
    74              }
    75            },
    76            "user": {
    77              "buyeruid": "awesome-user"
    78            },
    79            "tmax": 1000
    80          },
    81          "impIDs":["some-impression-id"]
    82        },
    83        "mockResponse": {
    84          "status": 200,
    85          "body": {
    86            "id": "awesome-resp-id",
    87            "seatbid": [
    88              {
    89                "bid": [
    90                  {
    91                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    92                    "impid": "1",
    93                    "price": 3.5,
    94                    "adm": "awesome-markup",
    95                    "adomain": [
    96                      "awesome.com"
    97                    ],
    98                    "crid": "20",
    99                    "w": 320,
   100                    "h": 50,
   101                    "mtype": 1
   102                  }
   103                ],
   104                "seat": "smrtconnect"
   105              }
   106            ],
   107            "cur": "USD",
   108            "ext": {
   109              "responsetimemillis": {
   110                "smrtconnect": 154
   111              },
   112              "tmaxrequest": 1000
   113            }
   114          }
   115        }
   116      }
   117    ],
   118    "expectedBidResponses": [
   119      {
   120        "bids": [
   121          {
   122            "bid": {
   123              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   124              "impid": "1",
   125              "price": 3.5,
   126              "adm": "awesome-markup",
   127              "adomain": [
   128                "awesome.com"
   129              ],
   130              "crid": "20",
   131              "w": 320,
   132              "h": 50,
   133              "mtype": 1       
   134            },
   135            "type": "banner" 
   136          }
   137        ]
   138      }
   139    ]
   140  }