github.com/prebid/prebid-server/v2@v2.18.0/adapters/sovrn/sovrntest/supplemental/no-user.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              "tagid": "123456"
    22            }
    23          }
    24        }
    25      ],
    26      "device": {
    27        "ua": "test-user-agent",
    28        "ip": "123.123.123.123",
    29        "language": "en",
    30        "dnt": 0
    31      },
    32      "site": {
    33        "domain": "www.publisher.com",
    34        "page": "http://www.publisher.com/awesome/site"
    35      }
    36    },
    37  
    38    "httpCalls": [
    39      {
    40        "expectedRequest": {
    41          "headers": {
    42            "Accept-Language": ["en"],
    43            "Content-Type": ["application/json"],
    44            "Dnt": ["0"],
    45            "User-Agent": ["test-user-agent"],
    46            "X-Forwarded-For": ["123.123.123.123"]
    47          },
    48          "uri": "http://sovrn.com/test/endpoint",
    49          "body": {
    50            "id": "test-request-id",
    51            "imp": [
    52              {
    53                "id": "test-imp-id",
    54                "banner": {
    55                  "format": [
    56                    {
    57                      "w": 300,
    58                      "h": 250
    59                    },
    60                    {
    61                      "w": 300,
    62                      "h": 600
    63                    }
    64                  ]
    65                },
    66                "tagid": "123456",
    67                "ext": {
    68                  "bidder": {
    69                    "tagid": "123456"
    70                  }
    71                }
    72              }
    73            ],
    74            "site": {
    75              "domain": "www.publisher.com",
    76              "page": "http://www.publisher.com/awesome/site"
    77            },
    78            "device": {
    79              "dnt": 0,
    80              "ua": "test-user-agent",
    81              "ip": "123.123.123.123",
    82              "language": "en"
    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": "a_449642_554a13d3b9f348fba707cf83f0f63800",
    96                    "impid": "test-imp-id",
    97                    "price": 3.5,
    98                    "nurl": "http://sovrn.com/rtb/impression?bannerid=138743&campaignid=3699&zoneid=449642&cb=69493397&tid=a_449642_554a13d3b9f348fba707cf83f0f63800",
    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": "a_449642_554a13d3b9f348fba707cf83f0f63800",
   118              "impid": "test-imp-id",
   119              "price": 3.5,
   120              "adm": "some-test-ad",
   121              "nurl": "http://sovrn.com/rtb/impression?bannerid=138743&campaignid=3699&zoneid=449642&cb=69493397&tid=a_449642_554a13d3b9f348fba707cf83f0f63800",
   122              "w": 300,
   123              "h": 250
   124            },
   125            "type": "banner"
   126          }
   127        ]
   128      }
   129    ]
   130  }