Channels

List user's channels

Info

Required scope: channels.read

Warning

This method requires authentication

Retrieve a list of the user's channels.

curl -H "Authorization: Bearer [access token]" \
     https://api.restream.io/v2/user/channel/all

Response

Success
Error
[
  {
    "id": 000,
    "streamingPlatformId": 000,
    "embedUrl": "https://beam.pro/embed/player/xxx",
    "url": "https://beam.pro/xxx",
    "identifier": "xxx",
    "displayName": "xxx",
    "active": true
  },
  {
    "id": 111,
    "streamingPlatformId": 111,
    "embedUrl": "http://www.twitch.tv/xxx/embed",
    "url": "http://twitch.tv/xxx",
    "identifier": "xxx",
    "displayName": "xxx",
    "active": false
  },
  ...
]