github.com/prebid/prebid-server/v2@v2.18.0/adapters/beintoo/beintootest/supplemental/site-domain-and-url-correctly-parsed.json (about)

     1  {
     2      "mockBidRequest": {
     3        "id": "some_test_auction",
     4        "imp": [
     5          {
     6            "id": "test-imp-id",
     7            "banner": {
     8              "format": [{
     9                "w": 300,
    10                "h": 600
    11            }],
    12              "w": 300,
    13              "h": 600
    14            },
    15            "ext": {
    16              "bidder": {
    17                "tagid": "123456"
    18              }
    19            }
    20          }
    21        ],
    22        "site": {
    23          "domain": "www.publisher.com",
    24          "page": "http://www.publisher.com/awesome/site?with=some&parameters=here"
    25        }
    26      },
    27  
    28      "httpCalls": [
    29        {
    30          "expectedRequest": {
    31            "uri": "https://ib.beintoo.com",
    32            "body": {
    33              "id": "some_test_auction",
    34              "imp": [{
    35                  "id": "test-imp-id",
    36                  "banner": {
    37                      "format": [{
    38                          "w": 300,
    39                          "h": 600
    40                      }],
    41                      "w": 300,
    42                      "h": 600
    43                  },
    44                  "tagid": "123456",
    45                  "secure": 0
    46              }],
    47              "site": {
    48                  "domain": "www.publisher.com",
    49                  "page": "http://www.publisher.com/awesome/site?with=some&parameters=here"
    50              }
    51            },
    52            "impIDs":["test-imp-id"]
    53          },
    54          "mockResponse": {
    55            "status": 200,
    56            "body": {
    57  
    58            }
    59          }
    60        }
    61      ],
    62      "expectedBidResponses": [{"currency":"USD","bids":[]}]
    63    }