GetClipsForUserById
Fetch clips for a Twitch user, by user ID
Signature
public List<ClipData> GetClipsForUserById(string userId, Boolean? isFeatured)
Parameters
userId
string required
No description provided.
isFeatured
Boolean?
Default:
true
Toggle featured clips behavior
If the parameter left empty or null, all clips will be retrieved, including both those flagged as featured, and those not flagged.
If isFeatured is set to true, then only clips that have is_featured set will be retrieved.
If isFeatured is set to false, then only clips that do not have is_featured set will be retrieved.
Return Type
List<Twitch.Common.Models.Api.ClipData>
Example
CPH.GetClipsForUserById(userId);
CPH.GetClipsForUserById(userId, isFeatured);