github.com/prebid/prebid-server/v2@v2.18.0/adapters/admixer/admixertest/exemplary/simple-app-audio.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "app": {
     5        "bundle": "com.prebid"
     6      },
     7      "device": {
     8        "ifa":"ec943cb9-61ec-460f-a925-6489c3fcc4e3"
     9      },
    10      "imp": [
    11        {
    12          "id": "test-imp-id",
    13          "audio": {
    14            "mimes": ["audio/mp4"],
    15            "protocols": [9,10]
    16          },
    17          "ext": {
    18            "bidder": {
    19              "zone": "473e443c-43d0-423d-a8d7-a302637a01d8"
    20            }
    21          }
    22        }
    23      ]
    24    },
    25  
    26    "httpCalls": [
    27      {
    28        "expectedRequest": {
    29          "uri": "http://inv-nets.admixer.net/pbs.aspx",
    30          "body": {
    31            "id": "test-request-id",
    32            "app": {
    33              "bundle": "com.prebid"
    34            },
    35            "device": {
    36              "ifa":"ec943cb9-61ec-460f-a925-6489c3fcc4e3"
    37            },
    38            "imp": [
    39              {
    40                "id": "test-imp-id",
    41                "audio": {
    42                  "mimes": ["audio/mp4"],
    43                  "protocols": [9,10]
    44                },
    45                "tagid": "473e443c-43d0-423d-a8d7-a302637a01d8"
    46              }
    47            ]
    48          },
    49          "impIDs":["test-imp-id"]
    50        },
    51        "mockResponse": {
    52          "status": 200,
    53          "body": {
    54            "id": "test-request-id",
    55            "seatbid": [
    56              {
    57                "seat": "admixer",
    58                "bid": [{
    59                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    60                  "impid": "test-imp-id",
    61                  "price": 0.500000,
    62                  "adm": "some-test-ad",
    63                  "crid": "test-crid"
    64                }]
    65              }
    66            ],
    67            "cur": "USD"
    68          }
    69        }
    70      }
    71    ],
    72  
    73    "expectedBidResponses": [
    74      {
    75        "currency": "USD",
    76        "bids": [
    77          {
    78            "bid": {
    79              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    80              "impid": "test-imp-id",
    81              "price": 0.5,
    82              "adm": "some-test-ad",
    83              "crid": "test-crid"
    84            },
    85            "type": "audio"
    86          }
    87        ]
    88      }
    89    ]
    90  }