github.com/prebid/prebid-server/v2@v2.18.0/adapters/algorix/algorixtest/exemplary/sample-banner-with-palcementid.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          "tagid": "test123",
    11          "ext": {
    12            "bidder": {
    13              "sid": "testSid",
    14              "token": "testToken",
    15              "placementId": "testPlacementId",
    16              "appId": "testAppId",
    17              "region": "USE"
    18            }
    19          }
    20        }
    21      ]
    22    },
    23  
    24    "httpCalls": [
    25      {
    26        "expectedRequest": {
    27          "uri": "https://use.xyz.test.com?sid=testSid&token=testToken",
    28          "body": {
    29            "id": "test-request-id",
    30            "imp": [
    31              {
    32                "id":"test-imp-id",
    33                "banner": {
    34                  "format": [{"w": 320, "h": 50}],
    35                  "w": 320,
    36                  "h": 50
    37                },
    38                "tagid": "test123",
    39                "ext": {
    40                  "bidder": {
    41                    "sid": "testSid",
    42                    "token": "testToken",
    43                    "placementId": "testPlacementId",
    44                    "appId": "testAppId",
    45                    "region": "USE"
    46                  }
    47                }
    48              }
    49            ]
    50          },
    51          "impIDs":["test-imp-id"]
    52        },
    53        "mockResponse": {
    54          "status": 200,
    55          "body": {
    56            "id": "test-request-id",
    57            "seatbid": [
    58              {
    59                "seat": "ttx",
    60                "bid": [{
    61                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    62                  "impid": "test-imp-id",
    63                  "price": 0.5,
    64                  "adm": "some-ads",
    65                  "crid": "crid_testid"
    66                }]
    67              }
    68            ],
    69            "cur": "USD"
    70          }
    71        }
    72      }
    73    ],
    74  
    75    "expectedBidResponses": [
    76      {
    77        "currency": "USD",
    78        "bids": [
    79          {
    80            "bid": {
    81              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    82              "impid": "test-imp-id",
    83              "price": 0.5,
    84              "adm": "some-ads",
    85              "crid": "crid_testid"
    86            },
    87            "type": "banner"
    88          }
    89        ]
    90      }
    91    ]
    92  }