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

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