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

     1  {
     2      "mockBidRequest": {
     3          "id": "some-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              "id": "video-1",
    25              "video": {
    26                  "w": 400,
    27                  "h": 300,
    28                  "mimes": ["video/x-flv"],
    29                  "minduration": 20
    30              },
    31              "ext": {
    32                  "bidder": {
    33                      "cp": 1234,
    34                      "ct": 2001
    35                  }
    36              }
    37          }]
    38      },
    39      "httpCalls": [{
    40          "expectedRequest": {
    41              "headers": {
    42                  "Content-Type": [
    43                      "application/json;charset=utf-8"
    44                  ],
    45                  "Accept": [
    46                      "application/json"
    47                  ]
    48              },
    49              "uri": "http://bidder.pulsepoint.com",
    50              "body": {
    51                  "id": "some-request-id",
    52                  "site": {
    53                      "page": "http://publisher.com/index.html",
    54                      "publisher": {
    55                          "id": "1234",
    56                          "name": "publisher.com"
    57                      }
    58                  },
    59                  "imp": [{
    60                      "id": "banner-1",
    61                      "tagid": "1001",
    62                      "banner": {
    63                          "w": 320,
    64                          "h": 50
    65                      },
    66                      "ext": {
    67                          "bidder": {
    68                              "cp": 1234,
    69                              "ct": 1001
    70                          }
    71                      }
    72                  }, {
    73                      "id": "video-1",
    74                      "tagid": "2001",
    75                      "video": {
    76                          "w": 400,
    77                          "h": 300,
    78                          "mimes": ["video/x-flv"],
    79                          "minduration": 20
    80                      },
    81                      "ext": {
    82                          "bidder": {
    83                              "cp": 1234,
    84                              "ct": 2001
    85                          }
    86                      }
    87                  }]
    88              }
    89          },
    90          "mockResponse": {
    91              "status": 200,
    92              "body": {
    93                  "id": "response-id",
    94                  "seatbid": [{
    95                      "bid": [{
    96                          "id": "banner-1-bid",
    97                          "impid": "banner-1",
    98                          "price": 3.5,
    99                          "adm": "<div>Creative</div>",
   100                          "adomain": [
   101                              "advertiser.com"
   102                          ],
   103                          "crid": "20",
   104                          "w": 300,
   105                          "h": 250
   106                      }, {
   107                          "id": "video-1-bid",
   108                          "impid": "video-1",
   109                          "price": 4.5,
   110                          "adm": "<vast>Creative</vast>",
   111                          "adomain": [
   112                              "advertiser.com"
   113                          ],
   114                          "crid": "201"
   115                      }],
   116                      "seat": "pulsepoint-seat"
   117                  }],
   118                  "cur": "USD"
   119              }
   120          }
   121      }],
   122      "expectedBidResponses": [{
   123          "bids": [{
   124              "bid": {
   125                  "id": "banner-1-bid",
   126                  "impid": "banner-1",
   127                  "price": 3.5,
   128                  "adm": "<div>Creative</div>",
   129                  "adomain": [
   130                      "advertiser.com"
   131                  ],
   132                  "crid": "20",
   133                  "w": 300,
   134                  "h": 250
   135              },
   136              "type": "banner"
   137          }, {
   138              "bid": {
   139                  "id": "video-1-bid",
   140                  "impid": "video-1",
   141                  "price": 4.5,
   142                  "adm": "<vast>Creative</vast>",
   143                  "adomain": [
   144                      "advertiser.com"
   145                  ],
   146                  "crid": "201"
   147              },
   148              "type": "video"
   149          }]
   150      }]
   151  }