github.com/prebid/prebid-server/v2@v2.18.0/adapters/criteo/criteotest/exemplary/simple-video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "site": {
     5        "id": "site-id",
     6        "page": "criteo.com"
     7      },
     8      "device": {
     9        "os": "android",
    10        "ip": "91.199.242.236",
    11        "ua": "random user agent"
    12      },
    13      "user": {
    14        "ext": {
    15          "eids": [
    16            {
    17              "source": "criteo.com",
    18              "uids": [
    19                {
    20                  "id": "criteo-eid"
    21                }
    22              ]
    23            }
    24          ]
    25        }
    26      },
    27      "imp": [
    28        {
    29          "id": "test-imp-id",
    30          "video": {
    31            "mimes": ["video/mp4"],
    32            "protocols": [2, 5],
    33            "w": 300,
    34            "h": 250
    35          },
    36          "ext": {
    37            "bidder": {
    38              "zoneid": 123456,
    39              "networkid": 78910
    40            }
    41          }
    42        }
    43      ]
    44    },
    45    "httpCalls": [
    46      {
    47        "expectedRequest": {
    48          "uri": "https://ssp-bidder.criteo.com/openrtb/pbs/auction/request?profile=230",
    49          "headers": {},
    50          "body": {
    51            "id": "test-request-id",
    52            "site": {
    53              "id": "site-id",
    54              "page": "criteo.com"
    55            },
    56            "device": {
    57              "os": "android",
    58              "ip": "91.199.242.236",
    59              "ua": "random user agent"
    60            },
    61            "user": {
    62              "ext": {
    63                "eids": [
    64                  {
    65                    "source": "criteo.com",
    66                    "uids": [
    67                      {
    68                        "id": "criteo-eid"
    69                      }
    70                    ]
    71                  }
    72                ]
    73              }
    74            },
    75            "imp": [
    76              {
    77                "id": "test-imp-id",
    78                "video": {
    79                  "mimes": ["video/mp4"],
    80                  "protocols": [2, 5],
    81                  "w": 300,
    82                  "h": 250
    83                },
    84                "ext": {
    85                  "bidder": {
    86                    "zoneid": 123456,
    87                    "networkid": 78910
    88                  }
    89                }
    90              }
    91            ]
    92          },
    93          "impIDs":["test-imp-id"]
    94        },
    95        "mockResponse": {
    96          "status": 200,
    97          "body": {
    98            "currency": "USD",
    99            "seatbid": [
   100              {
   101                "bid": [
   102                  {
   103                    "id": "test-slot-id",
   104                    "impid": "test-imp-id",
   105                    "price": 0.1,
   106                    "crid": "creative-123",
   107                    "adm": "some-test-ad-vast",
   108                    "h": 250,
   109                    "w": 300,
   110                    "ext": {
   111                      "prebid": {
   112                        "type": "video"
   113                      }
   114                    }
   115                  }
   116                ]
   117              }
   118            ]
   119          }
   120        }
   121      }
   122    ],
   123    "expectedBidResponses": [
   124      {
   125        "currency": "USD",
   126        "bids": [
   127          {
   128            "bid": {
   129              "id": "test-slot-id",
   130              "impid": "test-imp-id",
   131              "price": 0.1,
   132              "crid": "creative-123",
   133              "adm": "some-test-ad-vast",
   134              "h": 250,
   135              "w": 300,
   136              "ext": {
   137                "prebid": {
   138                  "type": "video"
   139                }
   140              }
   141            },
   142            "type": "video"
   143          }
   144        ]
   145      }
   146    ]
   147  }
   148