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

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "device": {
     5        "ip": "123.123.123.123",
     6        "ifa": "zxcjbzxmc-zxcbmz-zxbcz-zxczx"
     7      },
     8      "app": {
     9        "id": "1",
    10        "bundle": "com.wls.testwlsapplication"
    11      },
    12      "imp": [
    13        {
    14          "id": "test-imp-id",
    15          "video": {
    16            "mimes": ["video/mp4"],
    17            "protocols": [2, 5],
    18            "w": 1024,
    19            "h": 576
    20          },
    21          "ext": {
    22            "bidder": {
    23              "placementId": "3",
    24              "host": "example"
    25            }
    26          }
    27        }
    28      ]
    29    },
    30  
    31    "httpCalls": [
    32      {
    33        "expectedRequest": {
    34          "uri": "http://example.bc-plugin.com/?c=o&m=rtb",
    35          "body": {
    36            "id": "test-request-id",
    37            "device": {
    38              "ip": "123.123.123.123",
    39              "ifa": "zxcjbzxmc-zxcbmz-zxbcz-zxczx"
    40            },
    41            "app": {
    42              "id": "1",
    43              "bundle": "com.wls.testwlsapplication"
    44            },
    45            "imp": [
    46              {
    47                "id": "test-imp-id",
    48                "video": {
    49                  "mimes": ["video/mp4"],
    50                  "protocols": [2, 5],
    51                  "w": 1024,
    52                  "h": 576
    53                },
    54                "ext": {
    55                  "bidder": {
    56                    "placementId": "3",
    57                    "host": "example"
    58                  }
    59                }
    60              }
    61            ]
    62          },
    63          "impIDs":["test-imp-id"]
    64        },
    65        "mockResponse": {
    66          "status": 200,
    67          "body": {
    68            "id": "test-request-id",
    69            "seatbid": [
    70            {
    71              "bid": [
    72                {
    73                  "id": "test_bid_id",
    74                  "impid": "test-imp-id",
    75                  "price": 0.27543,
    76                  "adm": "<VAST version=\"3.0\"></VAST>",
    77                  "cid": "test_cid",
    78                  "crid": "test_crid",
    79                  "dealid": "test_dealid",
    80                  "ext": {
    81                    "prebid": {
    82                      "type": "video"
    83                    }
    84                  }
    85                }
    86              ]
    87            }
    88            ],
    89            "cur": "USD"
    90          }
    91        }
    92      }
    93    ],
    94  
    95  
    96    "expectedBidResponses": [
    97      {
    98        "bids": [
    99          {
   100            "bid": {
   101              "id": "test_bid_id",
   102              "impid": "test-imp-id",
   103              "price": 0.27543,
   104              "adm": "<VAST version=\"3.0\"></VAST>",
   105              "cid": "test_cid",
   106              "crid": "test_crid",
   107              "dealid": "test_dealid",
   108              "ext": {
   109                "prebid": {
   110                  "type": "video"
   111                }
   112              }
   113            },
   114            "type": "video"
   115          }
   116        ],
   117        "currency": "USD"
   118      }
   119    ]
   120  }