List user's channels
Required scope: channels.read
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
{ "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" } ] }
{ "error": { "statusCode": 401, "status": 401, "code": 401, "message": "Invalid token: access token is invalid", "name": "invalid_token" } }