github.com/prebid/prebid-server/v2@v2.18.0/adapters/mgid/mgidtest/exemplary/simple-banner_no_device.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": 600
    16              }
    17            ]
    18          },
    19          "ext": {
    20            "bidder": {
    21              "accountId": "123",
    22              "placementId": "456",
    23              "bidfloor": 1.1,
    24              "cur": "GBP"
    25            }
    26          }
    27        }
    28      ],
    29      "site": {
    30        "domain": "www.publisher.com",
    31        "page": "http://www.publisher.com/awesome/site"
    32      },
    33      "user": {
    34        "buyeruid": "test_reader_id"
    35      }
    36    },
    37  
    38    "httpCalls": [
    39      {
    40        "expectedRequest": {
    41          "headers": {
    42            "Accept": ["application/json"],
    43            "Content-Type": ["application/json;charset=utf-8"]
    44          },
    45          "uri": "https://prebid.mgid.com/prebid/123",
    46          "body": {
    47            "id": "test-request-id",
    48            "imp": [
    49              {
    50                "id": "test-imp-id",
    51                "bidfloor": 1.1,
    52                "bidfloorcur": "GBP",
    53                "banner": {
    54                  "format": [
    55                    {
    56                      "w": 300,
    57                      "h": 250
    58                    },
    59                    {
    60                      "w": 300,
    61                      "h": 600
    62                    }
    63                  ]
    64                },
    65                "tagid": "456/test-imp-id",
    66                "ext": {
    67                  "bidder": {
    68                    "accountId": "123",
    69                    "placementId": "456",
    70                    "bidfloor": 1.1,
    71                    "cur": "GBP"
    72                  }
    73                }
    74              }
    75            ],
    76            "site": {
    77              "domain": "www.publisher.com",
    78              "page": "http://www.publisher.com/awesome/site"
    79            },
    80            "tmax": 200,
    81            "user": {
    82              "buyeruid": "test_reader_id"
    83            }
    84          },
    85          "impIDs":["test-imp-id"]
    86        },
    87        "mockResponse": {
    88          "status": 200,
    89          "body": {
    90            "id": "test-request-id",
    91            "seatbid": [
    92              {
    93                "bid": [
    94                  {
    95                    "id": "test-bid-id",
    96                    "impid": "test-imp-id",
    97                    "price": 3.5,
    98                    "nurl": "nurl",
    99                    "adm": "some-test-ad",
   100                    "w": 300,
   101                    "h": 250
   102                  }
   103                ]
   104              }
   105            ]
   106          }
   107        }
   108      }
   109    ],
   110  
   111    "expectedBidResponses": [
   112      {
   113        "currency": "USD",
   114        "bids": [
   115          {
   116            "bid": {
   117              "id": "test-bid-id",
   118              "impid": "test-imp-id",
   119              "price": 3.5,
   120              "adm": "some-test-ad",
   121              "nurl": "nurl",
   122              "w": 300,
   123              "h": 250
   124            },
   125            "type": "banner"
   126          }
   127        ]
   128      }
   129    ]
   130  }