github.com/prebid/prebid-server@v0.275.0/adapters/yieldmo/yieldmotest/exemplary/app-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          },
    15          "ext": {
    16            "bidder": {
    17              "placementId": "123"
    18            }
    19          }
    20        }
    21      ],
    22      "app": {
    23        "id": "fake-app-id"
    24      }
    25    },
    26    "httpCalls": [
    27      {
    28        "expectedRequest": {
    29          "uri": "https://ads.yieldmo.com/openrtb2",
    30          "body": {
    31            "id": "test-request-id",
    32            "imp": [
    33              {
    34                "id": "test-imp-id",
    35                "banner": {
    36                  "format": [
    37                    {
    38                      "w": 300,
    39                      "h": 250
    40                    }
    41                  ]
    42                },
    43                "ext": {
    44                  "placement_id": "123"
    45                }
    46              }
    47            ],
    48            "app": {
    49              "id": "fake-app-id"
    50            }
    51          }
    52        },
    53        "mockResponse": {
    54          "status": 200,
    55          "body": {
    56            "id": "test-request-id",
    57            "seatbid": [
    58              {
    59                "seat": "yieldmo",
    60                "bid": [
    61                  {
    62                    "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    63                    "impid": "test-imp-id",
    64                    "price": 0.500000,
    65                    "adm": "some-test-ad",
    66                    "crid": "crid_10",
    67                    "h": 250,
    68                    "w": 300
    69                  }
    70                ]
    71              }
    72            ],
    73            "cur": "USD"
    74          }
    75        }
    76      }
    77    ],
    78    "expectedBidResponses": [
    79      {
    80        "currency": "EUR",
    81        "bids": [
    82          {
    83            "bid": {
    84              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    85              "impid": "test-imp-id",
    86              "price": 0.5,
    87              "adm": "some-test-ad",
    88              "crid": "crid_10",
    89              "w": 300,
    90              "h": 250
    91            },
    92            "type": "banner"
    93          }
    94        ]
    95      }
    96    ]
    97  }