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