twitchdev / issues

Issue tracker for third party developers.
Apache License 2.0
74 stars 6 forks source link

Get User Block List - example missing pagination key #951

Open chillymosh opened 6 months ago

chillymosh commented 6 months ago

Brief description

https://dev.twitch.tv/docs/api/reference/#get-user-block-list Only a minor detail but this endpoint is a paginated endpoint, which correctly shows the Query Parameters of first and after. But the Example Response does not show the pagination key.

Expected documentation

{
  "data": [
    {
      "user_id": "135093069",
      "user_login": "bluelava",
      "display_name": "BlueLava"
    },
    {
      "user_id": "27419011",
      "user_login": "travistyoj",
      "display_name": "TravistyOJ"
    }
  ],
   "pagination": {"cursor": "adsASd2d32dd33c2"}
}

Screenshots image

Additional context or questions