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/channels

Response

Success (200)
Error (Unauthorized)
{
  "channels": [
    {
      "id": 123456,
      "platformId": 29,
      "channelUrl": "https://example.com/live",
      "displayName": "My Custom RTMP"
    },
    {
      "id": 123457,
      "platformId": 73,
      "channelUrl": "https://instagram.com/xxx",
      "displayName": "My Instagram"
    }
  ]
}