github.com/prebid/prebid-server/v2@v2.18.0/adapters/epom/epomtest/exemplary/simple-site-banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "site": {
     5        "page": "prebid.org"
     6      },
     7      "device": {
     8        "ip":"238.89.104.156"
     9      },
    10      "imp": [
    11        {
    12          "id": "test-imp-id",
    13          "banner": {
    14            "format": [
    15              {
    16                "w": 300,
    17                "h": 50
    18              }
    19            ]
    20          }
    21        }
    22      ]
    23    },
    24  
    25    "httpCalls": [
    26      {
    27        "expectedRequest": {
    28          "uri": "https://an.epom.com/ortb",
    29          "headers": {
    30            "Accept": [
    31              "application/json"
    32            ],
    33            "Content-Type": [
    34              "application/json;charset=utf-8"
    35            ]
    36          },
    37          "body": {
    38            "id": "test-request-id",
    39            "site": {
    40              "page": "prebid.org"
    41            },
    42            "device": {
    43              "ip":"238.89.104.156"
    44            },
    45            "imp": [
    46              {
    47                "id": "test-imp-id",
    48                "banner": {
    49                  "format": [
    50                    {
    51                      "w": 300,
    52                      "h": 50
    53                    }
    54                  ]
    55                }
    56              }
    57            ]
    58          },
    59          "impIDs":["test-imp-id"]
    60        },
    61        "mockResponse": {
    62          "status": 200,
    63          "body": {
    64            "id": "test-request-id",
    65            "seatbid": [
    66              {
    67                "seat": "epom",
    68                "bid": [
    69                  {
    70                    "id": "1",
    71                    "impid": "test-imp-id",
    72                    "price": 0.500000,
    73                    "adm": "some-test-adm",
    74                    "crid": "test-crid",
    75                    "h": 50,
    76                    "w": 300
    77                  }
    78                ]
    79              }
    80            ],
    81            "cur": "USD"
    82          }
    83        }
    84      }
    85    ],
    86  
    87    "expectedBidResponses": [
    88      {
    89        "currency": "USD",
    90        "bids": [
    91          {
    92            "bid": {
    93              "id": "1",
    94              "impid": "test-imp-id",
    95              "price": 0.5,
    96              "adm": "some-test-adm",
    97              "crid": "test-crid",
    98              "w": 300,
    99              "h": 50
   100            },
   101            "type": "banner"
   102          }
   103        ]
   104      }
   105    ]
   106  }