github.com/prebid/prebid-server@v0.275.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        },
    62        "mockResponse": {
    63          "status": 200,
    64          "body": {
    65            "id": "test-request-id",
    66            "seatbid": [
    67              {
    68                "seat": "seat-id",
    69                "bid": [
    70                  {
    71                    "id": "1",
    72                    "impid": "test-imp-id",
    73                    "adid": "11110126",
    74                    "price": 0.500000,
    75                    "adm": "some-test-ad",
    76                    "crid": "test-crid",
    77                    "h": 250,
    78                    "w": 300,
    79                    "ext": {
    80                      "pangle": {
    81                        "adtype": 5
    82                      }
    83                    }
    84                  }
    85                ]
    86              }
    87            ],
    88            "cur": "USD"
    89          }
    90        }
    91      }
    92    ],
    93    "expectedBidResponses": [
    94      {
    95        "currency": "USD",
    96        "bids": [
    97          {
    98            "bid": {
    99              "id": "1",
   100              "impid": "test-imp-id",
   101              "adid": "11110126",
   102              "price": 0.5,
   103              "adm": "some-test-ad",
   104              "crid": "test-crid",
   105              "w": 300,
   106              "h": 250,
   107              "ext": {
   108                "pangle": {
   109                  "adtype": 5
   110                }
   111              }
   112            },
   113            "type": "native"
   114          }
   115        ]
   116      }
   117    ]
   118  }