github.com/prebid/prebid-server@v0.275.0/adapters/pulsepoint/pulsepointtest/exemplary/empty-pub-node-app.json (about)

     1  {
     2      "mockBidRequest": {
     3          "id": "request-id",
     4          "app": {
     5              "bundle": "com.publisher.app"
     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                  "app": {
    35                      "bundle": "com.publisher.app",
    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          },
    56          "mockResponse": {
    57              "status": 200,
    58              "body": {
    59                  "id": "response-id",
    60                  "seatbid": [{
    61                      "bid": [{
    62                          "id": "banner-1-bid",
    63                          "impid": "banner-1",
    64                          "price": 3.5,
    65                          "adm": "<div>Creative</div>",
    66                          "adomain": [
    67                              "advertiser.com"
    68                          ],
    69                          "crid": "20",
    70                          "w": 300,
    71                          "h": 250
    72                      }],
    73                      "seat": "pulsepoint-seat"
    74                  }],
    75                  "cur": "USD"
    76              }
    77          }
    78      }],
    79      "expectedBidResponses": [{
    80          "bids": [{
    81              "bid": {
    82                  "id": "banner-1-bid",
    83                  "impid": "banner-1",
    84                  "price": 3.5,
    85                  "adm": "<div>Creative</div>",
    86                  "adomain": [
    87                      "advertiser.com"
    88                  ],
    89                  "crid": "20",
    90                  "w": 300,
    91                  "h": 250
    92              },
    93              "type": "banner"
    94          }]
    95      }]
    96  }