Forum Discussion
cmw
7 years agoNew Member
Trying to use filter parameter with C# PowerBI V2 API GetGroupsAsync()
I'm trying to select a PowerBI Embedded Group using the $filter parameter with GetGroupsAsync() Currently I am using Microsoft Power BI Version 2 APIs with C# This is the method I'm trying to use: ...
yvcabrera
5 years agoNew Member
sample :
//list workspaces
var workspaces = await pbiClient.Groups.GetGroupsAsAdminAsync(top: 100, null, "type eq 'Workspace' and state eq 'Active'");