github.com/prebid/prebid-server@v0.275.0/adapters/adoppler/adopplertest/exemplary/default-client.json (about)

     1  {
     2    "mockBidRequest":{
     3      "id":"req1",
     4      "imp":[
     5        {
     6          "id":"imp1",
     7          "banner":{
     8            "w":100,
     9            "h":200
    10          },
    11          "ext":{
    12            "bidder":{
    13              "adunit":"unit1"
    14            }
    15          }
    16        }
    17      ]
    18    },
    19    "httpCalls":[
    20      {
    21        "expectedRequest":{
    22          "uri":"http://app.trustedmarketplace.com/processHeaderBid/unit1",
    23          "body":{
    24            "id":"req1-unit1",
    25            "imp":[
    26              {
    27                "id":"imp1",
    28                "banner":{
    29                  "w":100,
    30                  "h":200
    31                },
    32                "ext":{
    33                  "bidder":{
    34                    "adunit":"unit1"
    35                  }
    36                }
    37              }
    38            ]
    39          }
    40        },
    41        "mockResponse":{
    42          "status":200,
    43          "body":{
    44            "id":"req1-unit1",
    45            "seatbid":[
    46              {
    47                "bid":[
    48                  {
    49                    "id":"req1-unit1-bid1",
    50                    "impid":"imp1",
    51                    "price":0.12,
    52                    "adm":"<b>An ad</b>"
    53                  }
    54                ]
    55              }
    56            ],
    57            "cur":"USD"
    58          }
    59        }
    60      }
    61    ],
    62    "expectedBidResponses":[
    63      {
    64        "currency":"USD",
    65        "bids":[
    66          {
    67            "bid":{
    68              "id":"req1-unit1-bid1",
    69              "impid":"imp1",
    70              "price":0.12,
    71              "adm":"<b>An ad</b>"
    72            },
    73            "type":"banner"
    74          }
    75        ]
    76      }
    77    ]
    78  }