github.com/prebid/prebid-server/v2@v2.18.0/adapters/eplanning/eplanningtest/supplemental/app-domain-and-url-correctly-parsed.json (about)

     1  {
     2      "mockBidRequest": {
     3        "id": "test-request-id",
     4        "imp": [
     5          {
     6            "id": "test-imp-id",
     7            "banner": {
     8              "w": 600,
     9              "h": 300
    10            },
    11            "ext": {
    12              "bidder": {
    13                "ci": "12345",
    14                "adunit_code": "test_adunitcode"
    15              }
    16            }
    17          }
    18        ],
    19        "app": {
    20          "id": "[a-f0-9]{16}",
    21          "name": "MobileExchange",
    22          "domain": "sitio.net",
    23          "cat":  ["IAB12"],
    24          "publisher": {
    25            "id": "[a-f0-9]{16}",
    26            "name": "mobile - cliente sitio con exchange activo y ad magic"
    27          },
    28          "bundle": "mx.com.xeu"
    29        },
    30        "device": {
    31          "ua": "test-user-agent",
    32          "ip": "123.123.123.123",
    33          "ifa": "3B8E2335-Z049",
    34          "language": "en",
    35          "dnt": 1
    36        }
    37      },
    38    
    39      "httpCalls": [
    40        {
    41          "expectedRequest": {
    42            "uri": "http://rtb.e-planning.net/pbs/1/12345/1/mx.com.xeu/ROS?app=1&appid=%5Ba-f0-9%5D%7B16%7D&appn=MobileExchange&e=testadunitcode%3A600x300&ifa=3B8E2335-Z049&ip=123.123.123.123&ncb=1",
    43            "body": {},
    44            "impIDs":["test-imp-id"]
    45          },
    46          "mockResponse": {
    47            "status": 200,
    48            "body": {
    49              "sI": { "k": "12345" },
    50              "sec": "ROS",
    51              "sp": [
    52                {
    53                  "k": "testadunitcode",
    54                  "a": [{
    55                    "i": "123456789abcdef",
    56                    "pr": "0.5",
    57                    "adm": "<div>test</div>",
    58                    "crid": "abcdef123456789",
    59                    "id": "adid12345",
    60                    "w": 600,
    61                    "h": 300
    62                  }]
    63                }
    64              ]
    65            }
    66          }
    67        }
    68      ],
    69    
    70      "expectedBidResponses": [
    71        {
    72          "currency": "USD",
    73          "bids": [
    74            {
    75              "bid": {
    76                "id": "123456789abcdef",
    77                "impid": "test-imp-id",
    78                "price": 0.5,
    79                "adm": "<div>test</div>",
    80                "adid": "adid12345",
    81                "crid": "abcdef123456789",
    82                "w": 600,
    83                "h": 300
    84              },
    85              "type": "banner"
    86            }
    87          ]
    88        }
    89      ]
    90    }
    91