github.com/prebid/prebid-server@v0.275.0/adapters/eplanning/eplanningtest/exemplary/simple-banner.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_ad.-un(itco:de:"
    15            }
    16          }
    17        }
    18      ],
    19      "device": {
    20        "ua": "test-user-agent",
    21        "ip": "123.123.123.123",
    22        "language": "en",
    23        "dnt": 1
    24      },
    25      "user": {
    26        "id": "43215",
    27        "buyeruid": "2154987"
    28      }
    29    },
    30  
    31    "httpCalls": [
    32      {
    33        "expectedRequest": {
    34          "uri": "http://rtb.e-planning.net/pbs/1/12345/1/FILE/ROS?e=testadun_itco_de%3A600x300&ip=123.123.123.123&ncb=1&uid=2154987&ur=FILE",
    35          "body": {}
    36        },
    37        "mockResponse": {
    38          "status": 200,
    39          "headers": {
    40            "Content-Type": ["application/json"],
    41            "Accept": ["application/json"],
    42            "User-Agent": ["test-user-agent"],
    43            "X-Forwarded-For": ["123.123.123.123"],
    44            "Accept-Language": ["en"],
    45            "Dnt": ["1"]
    46          },
    47          "body": {
    48            "sI": { "k": "12345" },
    49            "sec": "ROS",
    50            "sp": [
    51              {
    52                "k": "testadun_itco_de",
    53                "a": [{
    54                  "i": "123456789abcdef",
    55                  "pr": "0.5",
    56                  "adm": "<div>test</div>",
    57                  "crid": "abcdef123456789",
    58                  "id": "adid12345",
    59                  "w": 600,
    60                  "h": 300
    61                }]
    62              }
    63            ]
    64          }
    65        }
    66      }
    67    ],
    68  
    69    "expectedBidResponses": [
    70      {
    71        "currency": "USD",
    72        "bids": [
    73          {
    74            "bid": {
    75              "id": "123456789abcdef",
    76              "impid": "test-imp-id",
    77              "price": 0.5,
    78              "adm": "<div>test</div>",
    79              "adid": "adid12345",
    80              "crid": "abcdef123456789",
    81              "w": 600,
    82              "h": 300
    83            },
    84            "type": "banner"
    85          }
    86        ]
    87      }
    88    ]
    89  }