Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bprob
New Member

URL for HttpWebRequerst

Hi, I try to get a Power Bi Report List per c# code. My problem is to find the right URL for my workspace.

The error happens, when I try to get the report list from the xml string in line:

 

PBIReports PBIReports = JsonConvert.DeserializeObject<PBIReports>(json)

 

Can someone help please, I try:

 

var uri = String.Format("https://api.powerbi.com/v1.0/collections/{0}/workspaces/{1}/reports", workspaceName, workspaceId);

 

How I get workspaceName and the

workspaceId ?

 

1 ACCEPTED SOLUTION
Eric_Zhang
Employee
Employee


@bprob wrote:

Hi, I try to get a Power Bi Report List per c# code. My problem is to find the right URL for my workspace.

The error happens, when I try to get the report list from the xml string in line:

 

PBIReports PBIReports = JsonConvert.DeserializeObject<PBIReports>(json)

 

Can someone help please, I try:

 

var uri = String.Format("https://api.powerbi.com/v1.0/collections/{0}/workspaces/{1}/reports", workspaceName, workspaceId);

 

How I get workspaceName and the

workspaceId ?

 


@bprob

That collections and workspaces are for Power BI Embedded. You could find  the collection name, workspaceid and accesskey in Azure portal.

 

GET /v1.0/collections/cisdemo/workspaces/79c71931-de23-49a8-a3c8-b79d2192fe0b/reports HTTP/1.1
Host: api.powerbi.com
Authorization: AppKey KJixsmmw+NGNOtjDZTLOMxxxxxxxxxxxHFp7G45RYHRIO23ViXY8iE/zNVHROCmcaOIFr6a2vmQ==

Capture.PNG

 

 

To get the reports from Power BI Service, you could reference

 

GET /v1.0/myorg/groups/dc581184-a209-463b-8446-5432f16b6c15/reports HTTP/1.1
Host: api.powerbi.com
Authorization: Bearer eyJ0eXAiOiJKV1QixxxxxxxxPclZvM0Q1_m0Y3PA0k0pnytbhhcAzpzS2Mw
Content-Type: application/json

View solution in original post

1 REPLY 1
Eric_Zhang
Employee
Employee


@bprob wrote:

Hi, I try to get a Power Bi Report List per c# code. My problem is to find the right URL for my workspace.

The error happens, when I try to get the report list from the xml string in line:

 

PBIReports PBIReports = JsonConvert.DeserializeObject<PBIReports>(json)

 

Can someone help please, I try:

 

var uri = String.Format("https://api.powerbi.com/v1.0/collections/{0}/workspaces/{1}/reports", workspaceName, workspaceId);

 

How I get workspaceName and the

workspaceId ?

 


@bprob

That collections and workspaces are for Power BI Embedded. You could find  the collection name, workspaceid and accesskey in Azure portal.

 

GET /v1.0/collections/cisdemo/workspaces/79c71931-de23-49a8-a3c8-b79d2192fe0b/reports HTTP/1.1
Host: api.powerbi.com
Authorization: AppKey KJixsmmw+NGNOtjDZTLOMxxxxxxxxxxxHFp7G45RYHRIO23ViXY8iE/zNVHROCmcaOIFr6a2vmQ==

Capture.PNG

 

 

To get the reports from Power BI Service, you could reference

 

GET /v1.0/myorg/groups/dc581184-a209-463b-8446-5432f16b6c15/reports HTTP/1.1
Host: api.powerbi.com
Authorization: Bearer eyJ0eXAiOiJKV1QixxxxxxxxPclZvM0Q1_m0Y3PA0k0pnytbhhcAzpzS2Mw
Content-Type: application/json

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.