github.com/prebid/prebid-server/v2@v2.18.0/adapters/pangle/pangletest/exemplary/app_native.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          "native": {
    14            "request": "{}"
    15          },
    16          "ext": {
    17            "bidder": {
    18              "token": "123"
    19            }
    20          }
    21        }
    22      ]
    23    },
    24    "httpCalls": [
    25      {
    26        "expectedRequest": {
    27          "uri": "https://pangle.io/api/get_ads",
    28          "headers": {
    29            "Content-Type": [
    30              "application/json"
    31            ],
    32            "TOKEN": [
    33              "123"
    34            ]
    35          },
    36          "body": {
    37            "id": "test-request-id",
    38            "app": {
    39              "bundle": "com.prebid"
    40            },
    41            "device": {
    42              "ifa": "87857b31-8942-4646-ae80-ab9c95bf3fab"
    43            },
    44            "imp": [
    45              {
    46                "id": "test-imp-id",
    47                "native": {
    48                  "request": "{}"
    49                },
    50                "ext": {
    51                  "adtype": 5,
    52                  "bidder": {
    53                    "token": "123"
    54                  },
    55                  "is_prebid": true,
    56                  "prebid": null
    57                }
    58              }
    59            ]
    60          },
    61          "impIDs":["test-imp-id"]
    62        },
    63        "mockResponse": {
    64          "status": 200,
    65          "body": {
    66            "id": "test-request-id",
    67            "seatbid": [
    68              {
    69                "seat": "seat-id",
    70                "bid": [
    71                  {
    72                    "id": "1",
    73                    "impid": "test-imp-id",
    74                    "adid": "11110126",
    75                    "price": 0.500000,
    76                    "adm": "some-test-ad",
    77                    "crid": "test-crid",
    78                    "h": 250,
    79                    "w": 300,
    80                    "ext": {
    81                      "pangle": {
    82                        "adtype": 5
    83                      }
    84                    }
    85                  }
    86                ]
    87              }
    88            ],
    89            "cur": "USD"
    90          }
    91        }
    92      }
    93    ],
    94    "expectedBidResponses": [
    95      {
    96        "currency": "USD",
    97        "bids": [
    98          {
    99            "bid": {
   100              "id": "1",
   101              "impid": "test-imp-id",
   102              "adid": "11110126",
   103              "price": 0.5,
   104              "adm": "some-test-ad",
   105              "crid": "test-crid",
   106              "w": 300,
   107              "h": 250,
   108              "ext": {
   109                "pangle": {
   110                  "adtype": 5
   111                }
   112              }
   113            },
   114            "type": "native"
   115          }
   116        ]
   117      }
   118    ]
   119  }