github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/account-required/with-account/required-with-acct.json (about)

     1  {
     2    "description": "This request comes with an account id and which is required by the config",
     3    "config": {
     4      "accountRequired": true
     5    },
     6  
     7    "mockBidRequest": {
     8      "id": "some-request-id",
     9      "site": {
    10        "publisher": { "id": "not_bad_acct"},
    11        "page": "test.somepage.com"
    12      },
    13      "user": { },
    14      "imp": [
    15        {
    16          "id": "my-imp-id",
    17          "banner": {
    18            "format": [
    19              {
    20                "w": 300,
    21                "h": 600
    22              }
    23            ]
    24          },
    25          "pmp": {
    26            "deals": [
    27              {
    28                "id": "some-deal-id"
    29              }
    30            ]
    31          },
    32          "ext": {
    33            "appnexus": {
    34              "placementId": 12883451
    35            }
    36          }
    37        }
    38      ],
    39      "tmax": 500,
    40      "ext": {
    41        "prebid": {
    42          "aliases": {
    43            "districtm": "appnexus"
    44          },
    45          "bidadjustmentfactors": {
    46            "appnexus": 1.01,
    47            "districtm": 0.98,
    48            "rubicon": 0.99
    49          },
    50          "cache": {
    51            "bids": {}
    52          },
    53          "targeting": {
    54            "includewinners": false,
    55            "pricegranularity": {
    56              "precision": 2,
    57              "ranges": [
    58                {
    59                  "max": 20,
    60                  "increment": 0.10
    61                }
    62              ]
    63            }
    64          }
    65        }
    66      }
    67    },
    68    "expectedBidResponse": {
    69        "id":"some-request-id",
    70        "bidid":"test bid id",
    71        "cur": "USD",
    72        "nbr":0,
    73        "seatbid": [
    74          {
    75            "bid": [
    76              {
    77                "id": "appnexus-bid",
    78                "impid": "my-imp-id",
    79                "price": 0
    80              }
    81            ],
    82            "seat": "appnexus"
    83          }
    84        ]
    85    },
    86    "expectedReturnCode": 200
    87  }