github.com/prebid/prebid-server/v2@v2.18.0/adapters/gumgum/gumgumtest/exemplary/banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [
     9              {
    10                "w": 300,
    11                "h": 250
    12              },
    13              {
    14                "w": 300,
    15                "h": 300
    16              }
    17            ],
    18            "w": 300,
    19            "h": 250
    20          },
    21          "ext": {
    22            "bidder": {
    23              "zone": "dc9d6be1"
    24            }
    25          }
    26        }
    27      ]
    28    },
    29  
    30    "httpCalls": [
    31      {
    32        "expectedRequest": {
    33          "uri": "https://g2.gumgum.com/providers/prbds2s/bid",
    34          "body":{
    35            "id": "test-request-id",
    36            "imp": [{
    37              "id": "test-imp-id",
    38              "banner": {
    39                "format": [{
    40                  "w": 300,
    41                  "h": 250
    42                }, {
    43                  "w": 300,
    44                  "h": 300
    45                }],
    46                "w": 300,
    47                "h": 250
    48              },
    49              "ext": {
    50                "bidder": {
    51                  "zone": "dc9d6be1"
    52                }
    53              }
    54            }]
    55          },
    56          "impIDs":["test-imp-id"]
    57        },
    58        "mockResponse": {
    59          "status": 200,
    60          "body": {
    61            "seatbid": [
    62              {
    63                "bid": [
    64                  {
    65                    "crid": "2068416",
    66                    "adm": "some-test-ad",
    67                    "adid": "2068416",
    68                    "price": 5,
    69                    "id": "5736a50b-6b05-42a8-aa6d-b0a4649dcd05",
    70                    "impid": "test-imp-id",
    71                    "cid": "4747"
    72                  }
    73                ]
    74              }
    75            ]
    76          }
    77        }
    78      }
    79    ],
    80  
    81    "expectedBidResponses": [
    82      {
    83        "currency": "USD",
    84        "bids": [
    85          {
    86            "bid": {
    87              "crid": "2068416",
    88              "adm": "some-test-ad",
    89              "adid": "2068416",
    90              "price": 5,
    91              "id": "5736a50b-6b05-42a8-aa6d-b0a4649dcd05",
    92              "impid": "test-imp-id",
    93              "cid": "4747"
    94            },
    95            "type": "banner"
    96          }
    97        ]
    98      }
    99    ]
   100  }