github.com/prebid/prebid-server/v2@v2.18.0/adapters/algorix/algorixtest/exemplary/sample-video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "video": {
     8            "w": 320,
     9            "h": 480,
    10            "mimes": [
    11              "video/mp4"
    12            ]
    13          },
    14          "ext": {
    15            "bidder": {
    16              "sid": "testSid",
    17              "token": "testToken",
    18              "placementId": "testPlacementId",
    19              "appId": "testAppId"
    20            }
    21          }
    22        }
    23      ]
    24    },
    25  
    26    "httpCalls": [
    27      {
    28        "expectedRequest": {
    29          "uri": "https://xyz.test.com?sid=testSid&token=testToken",
    30          "body": {
    31            "id": "test-request-id",
    32            "imp": [
    33              {
    34                "id":"test-imp-id",
    35                "video": {
    36                  "w": 320,
    37                  "h": 480,
    38                  "mimes": [
    39                    "video/mp4"
    40                  ]
    41                },
    42                "ext": {
    43                  "bidder": {
    44                    "sid": "testSid",
    45                    "token": "testToken",
    46                    "placementId": "testPlacementId",
    47                    "appId": "testAppId"
    48                  }
    49                }
    50              }
    51            ]
    52          },
    53          "impIDs":["test-imp-id"]
    54        },
    55        "mockResponse": {
    56          "status": 200,
    57          "body": {
    58            "id": "test-request-id",
    59            "seatbid": [
    60              {
    61                "seat": "ttx",
    62                "bid": [{
    63                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    64                  "impid": "test-imp-id",
    65                  "price": 1.2,
    66                  "adm": "some-ads",
    67                  "crid": "crid_testid"
    68                }]
    69              }
    70            ],
    71            "cur": "USD"
    72          }
    73        }
    74      }
    75    ],
    76  
    77    "expectedBidResponses": [
    78      {
    79        "currency": "USD",
    80        "bids": [
    81          {
    82            "bid": {
    83              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    84              "impid": "test-imp-id",
    85              "price": 1.2,
    86              "adm": "some-ads",
    87              "crid": "crid_testid"
    88            },
    89            "type": "video"
    90          }
    91        ]
    92      }
    93    ]
    94  }