Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago

Imports.Postimportingroup() in .NET SDK returns 400 Bad Request

Using the .NET SDK, I want to programmatically import a dataset, which is defined in a .PBIX file stored in OneDrive for Business, into an app workspace. The method PowerBIClient.Imports.PostImportInGroupAsync() is supposed to accomplish this. However, I get inscrutable 400 Bad Request errors whenever I call it.

 

Microsoft doesn't seem to have any online documentation of this .NET SDK method. (There doesn't seem to be complete reference documentation to the .NET SDK, period.) There is documentation for the underlying REST API here:

 

https://docs.microsoft.com/en-us/rest/api/power-bi/imports/postimportingroup#importconflicthandlermode

 

What I don't see is any explanation of what the "ImportInfo" (sent as message body in the REST API) should contain. It has three properties, all strings: FilePath, FileUrl, and ConnectionType. I believe ConnectionType is supposed to be set to "import", but I don't know what the proper for is for FilePath or FileUrl, and I have found no examples.

 

Could someone please explain, preferably with an example, how to call this SDK method successrfully?

Code in C# is essentially this:

 

 

9 Replies

  • Having the same issue here. Attaching SDK C# code.

     

    var importUrl = $"https://api.powerbi.com/v1.0/myorg/groups/{targetWorkspaceId}/imports?datasetDisplayName={reportName}&nameConflict=Ignore&skipReport=false&overrideReportLabel=true&overrideModelLabel=true";
    var importRequest = new { fileUrl = recievedUploadUrl };
    var importResponse = await httpClient.PostAsync(importUrl, new StringContent(JsonConvert.SerializeObject(importRequest), Encoding.UTF8, "application/json"));

    • mamyth's avatar
      mamyth
      New Member

      andrask - did you find a fix for this? We had stuff working a couple of months back and now get the same error.

  • Looking for this info as well, did you ever find any examples?
      • atsats's avatar
        atsats
        Advocate I

        I'm also getting the Bad Request response - pretty amazing that more than a year after the question was first asked the question is still unanswered and the documentation is still woefully inadequate. 

         

        What a waste of time for developers to reverse-engineer APIs that should've been documented in teh first place.

  • I have the same problem here for large files with premium capacity.

    BadRequest is recieved when using either rest api or .net sdk v2.

    The error happens after the pbix has been uploaded successfully to the temp blob location.

    The http response is empty so there isn't any meaningful information to troubleshoot.

    .pbix files <1GB are imported without issues.

     

    I hope someone from Power BI team can look into it ASAP.

    • integrationsupp's avatar
      integrationsupp
      Frequent Visitor
      Can you please share your .Net sdk code to. Upload pbix?
      I am facing this error when uploading a 10 mb pbix. I am on a pro account.
      Help will be much appreciated as I am stuck on this for quite some time now.