github.com/prebid/prebid-server/v2@v2.18.0/adapters/aceex/aceextest/exemplary/video-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          "video": {
    31            "mimes": [
    32              "video/mp4"
    33            ],
    34            "w": 640,
    35            "h": 480,
    36            "minduration": 120,
    37            "maxduration": 150
    38          },
    39          "ext": {
    40            "bidder": {
    41              "accountid": "hash"
    42            }
    43          }
    44        }
    45      ]
    46    },
    47    "httpCalls": [
    48      {
    49        "expectedRequest": {
    50          "headers": {
    51            "Content-Type": [
    52              "application/json;charset=utf-8"
    53            ],
    54            "Accept": [
    55              "application/json"
    56            ],
    57            "X-Openrtb-Version": [
    58              "2.5"
    59            ],
    60            "User-Agent": [
    61              "test-user-agent"
    62            ],
    63            "X-Forwarded-For": [
    64              "123.123.123.123"
    65            ]
    66          },
    67          "uri": "http://us.example.com/bid?uqhash=hash",
    68          "body": {
    69            "id": "some-request-id",
    70            "device": {
    71              "ua": "test-user-agent",
    72              "ip": "123.123.123.123",
    73              "language": "en",
    74              "dnt": 0
    75            },
    76            "imp": [
    77              {
    78                "id": "some-impression-id",
    79                "video": {
    80                  "mimes": [
    81                    "video/mp4"
    82                  ],
    83                  "minduration": 120,
    84                  "maxduration": 150,
    85                  "w": 640,
    86                  "h": 480
    87                },
    88                "tagid": "ogTAGID"
    89              }
    90            ],
    91            "app": {
    92              "id": "123456789",
    93              "name": "Awesome App",
    94              "bundle": "com.app.awesome",
    95              "domain": "awesomeapp.com",
    96              "cat": [
    97                "IAB22-1"
    98              ],
    99              "publisher": {
   100                "id": "123456789"
   101              }
   102            },
   103            "user": {
   104              "buyeruid": "awesome-user"
   105            },
   106            "tmax": 1000
   107          },
   108          "impIDs":["some-impression-id"]
   109        },
   110        "mockResponse": {
   111          "status": 200,
   112          "body": {
   113            "id": "awesome-resp-id",
   114            "seatbid": [
   115              {
   116                "bid": [
   117                  {
   118                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   119                    "impid": "some-impression-id",
   120                    "price": 3.5,
   121                    "adm": "awesome-markup",
   122                    "adomain": [
   123                      "awesome.com"
   124                    ],
   125                    "crid": "20",
   126                    "w": 1280,
   127                    "h": 720
   128                  }
   129                ],
   130                "seat": "aceex"
   131              }
   132            ],
   133            "cur": "USD",
   134            "ext": {
   135              "responsetimemillis": {
   136                "aceex": 154
   137              },
   138              "tmaxrequest": 1000
   139            }
   140          }
   141        }
   142      }
   143    ],
   144    "expectedBidResponses": [
   145      {
   146        "bids":[
   147          {
   148            "bid":  {
   149              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   150              "impid": "some-impression-id",
   151              "price": 3.5,
   152              "adm": "awesome-markup",
   153              "crid": "20",
   154              "adomain": [
   155                "awesome.com"
   156              ],
   157              "w": 1280,
   158              "h": 720
   159            },
   160            "type": "video"
   161          }
   162        ]
   163      }
   164    ]
   165  }