github.com/prebid/prebid-server@v0.275.0/adapters/pangle/pangletest/exemplary/app_video_instl.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "app": {
     5        "bundle": "com.prebid"
     6      },
     7      "device": {
     8        "ifa": "87857b31-8942-4646-ae80-ab9c95bf3fab"
     9      },
    10      "imp": [
    11        {
    12          "id": "test-imp-id",
    13          "video": {
    14            "mimes": [
    15              "video/mp4"
    16            ],
    17            "protocols": [
    18              2,
    19              5
    20            ],
    21            "w": 1024,
    22            "h": 576,
    23            "ext": {
    24              "foo": "bar"
    25            }
    26          },
    27          "instl": 1,
    28          "ext": {
    29            "bidder": {
    30              "token": "123"
    31            }
    32          }
    33        }
    34      ]
    35    },
    36    "httpCalls": [
    37      {
    38        "expectedRequest": {
    39          "uri": "https://pangle.io/api/get_ads",
    40          "headers": {
    41            "Content-Type": [
    42              "application/json"
    43            ],
    44            "TOKEN": [
    45              "123"
    46            ]
    47          },
    48          "body": {
    49            "id": "test-request-id",
    50            "app": {
    51              "bundle": "com.prebid"
    52            },
    53            "device": {
    54              "ifa": "87857b31-8942-4646-ae80-ab9c95bf3fab"
    55            },
    56            "imp": [
    57              {
    58                "id": "test-imp-id",
    59                "video": {
    60                  "mimes": [
    61                    "video/mp4"
    62                  ],
    63                  "protocols": [
    64                    2,
    65                    5
    66                  ],
    67                  "w": 1024,
    68                  "h": 576,
    69                  "ext": {
    70                    "foo": "bar"
    71                  }
    72                },
    73                "instl": 1,
    74                "ext": {
    75                  "adtype": 8,
    76                  "bidder": {
    77                    "token": "123"
    78                  },
    79                  "is_prebid": true,
    80                  "prebid": null
    81                }
    82              }
    83            ]
    84          }
    85        },
    86        "mockResponse": {
    87          "status": 200,
    88          "body": {
    89            "id": "test-request-id",
    90            "seatbid": [
    91              {
    92                "seat": "seat-id",
    93                "bid": [
    94                  {
    95                    "id": "1",
    96                    "impid": "test-imp-id",
    97                    "adid": "11110126",
    98                    "price": 0.500000,
    99                    "adm": "some-test-ad",
   100                    "crid": "test-crid",
   101                    "h": 250,
   102                    "w": 300,
   103                    "ext": {
   104                      "pangle": {
   105                        "adtype": 8
   106                      }
   107                    }
   108                  }
   109                ]
   110              }
   111            ],
   112            "cur": "USD"
   113          }
   114        }
   115      }
   116    ],
   117    "expectedBidResponses": [
   118      {
   119        "currency": "USD",
   120        "bids": [
   121          {
   122            "bid": {
   123              "id": "1",
   124              "impid": "test-imp-id",
   125              "adid": "11110126",
   126              "price": 0.5,
   127              "adm": "some-test-ad",
   128              "crid": "test-crid",
   129              "w": 300,
   130              "h": 250,
   131              "ext": {
   132                "pangle": {
   133                  "adtype": 8
   134                }
   135              }
   136            },
   137            "type": "video"
   138          }
   139        ]
   140      }
   141    ]
   142  }