github.com/prebid/prebid-server@v0.275.0/adapters/pulsepoint/pulsepointtest/exemplary/banner.json (about)

     1  {
     2      "mockBidRequest": {
     3          "id": "request-id",
     4          "site": {
     5              "page": "http://publisher.com/index.html",
     6              "publisher": {
     7                  "id": "123456789",
     8                  "name": "publisher.com"
     9              }
    10          },
    11          "imp": [{
    12              "id": "banner-1",
    13              "banner": {
    14                  "w": 320,
    15                  "h": 50
    16              },
    17              "ext": {
    18                  "bidder": {
    19                      "cp": 1234,
    20                      "ct": 1001
    21                  }
    22              }
    23          }]
    24      },
    25      "httpCalls": [{
    26          "expectedRequest": {
    27              "headers": {
    28                  "Content-Type": [
    29                      "application/json;charset=utf-8"
    30                  ],
    31                  "Accept": [
    32                      "application/json"
    33                  ]
    34              },
    35              "uri": "http://bidder.pulsepoint.com",
    36              "body": {
    37                  "id": "request-id",
    38                  "site": {
    39                      "page": "http://publisher.com/index.html",
    40                      "publisher": {
    41                          "id": "1234",
    42                          "name": "publisher.com"
    43                      }
    44                  },
    45                  "imp": [{
    46                      "id": "banner-1",
    47                      "tagid": "1001",
    48                      "banner": {
    49                          "w": 320,
    50                          "h": 50
    51                      },
    52                      "ext": {
    53                          "bidder": {
    54                              "cp": 1234,
    55                              "ct": 1001
    56                          }
    57                      }
    58                  }]
    59              }
    60          },
    61          "mockResponse": {
    62              "status": 200,
    63              "body": {
    64                  "id": "response-id",
    65                  "seatbid": [{
    66                      "bid": [{
    67                          "id": "banner-1-bid",
    68                          "impid": "banner-1",
    69                          "price": 3.5,
    70                          "adm": "<div>Creative</div>",
    71                          "adomain": [
    72                              "advertiser.com"
    73                          ],
    74                          "crid": "20",
    75                          "w": 300,
    76                          "h": 250
    77                      }],
    78                      "seat": "pulsepoint-seat"
    79                  }],
    80                  "cur": "USD"
    81              }
    82          }
    83      }],
    84      "expectedBidResponses": [{
    85          "bids": [{
    86              "bid": {
    87                  "id": "banner-1-bid",
    88                  "impid": "banner-1",
    89                  "price": 3.5,
    90                  "adm": "<div>Creative</div>",
    91                  "adomain": [
    92                      "advertiser.com"
    93                  ],
    94                  "crid": "20",
    95                  "w": 300,
    96                  "h": 250
    97              },
    98              "type": "banner"
    99          }]
   100      }]
   101  }