github.com/prebid/prebid-server/v2@v2.18.0/adapters/pulsepoint/pulsepointtest/exemplary/empty-pub-node-site.json (about)

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