github.com/prebid/prebid-server@v0.275.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        },
    86        "mockResponse": {
    87          "status": 200,
    88          "body": {
    89            "id": "test-request-id",
    90            "seatbid": [
    91              {
    92                "bid": [
    93                  {
    94                    "id": "a_449642_554a13d3b9f348fba707cf83f0f63800",
    95                    "impid": "test-imp-id",
    96                    "price": 3.5,
    97                    "nurl": "http://sovrn.com/rtb/impression?bannerid=138743&campaignid=3699&zoneid=449642&cb=69493397&tid=a_449642_554a13d3b9f348fba707cf83f0f63800",
    98                    "adm": "some-test-ad",
    99                    "w": 300,
   100                    "h": 250
   101                  }
   102                ]
   103              }
   104            ]
   105          }
   106        }
   107      }
   108    ],
   109  
   110    "expectedBidResponses": [
   111      {
   112        "currency": "USD",
   113        "bids": [
   114          {
   115            "bid": {
   116              "id": "a_449642_554a13d3b9f348fba707cf83f0f63800",
   117              "impid": "test-imp-id",
   118              "price": 3.5,
   119              "adm": "some-test-ad",
   120              "nurl": "http://sovrn.com/rtb/impression?bannerid=138743&campaignid=3699&zoneid=449642&cb=69493397&tid=a_449642_554a13d3b9f348fba707cf83f0f63800",
   121              "w": 300,
   122              "h": 250
   123            },
   124            "type": "banner"
   125          }
   126        ]
   127      }
   128    ]
   129  }