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