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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
brunozanoelo
Post Patron
Post Patron

response.StatusCode=500 InternalServerError

            if (File.Exists(pbixFilePath) == true)
            {
                //DeleteImport(workspace.id, NomedoCubo);

                string restUrlImportPbix = "https://api.powerbi.com/v1.0/myorg/groups/" + workspace + "/imports?datasetDisplayName=" + NomedoCubo + "&nameConflict=CreateOrOverwrite";
                var pbixBodyContent = new StreamContent(File.Open(pbixFilePath, FileMode.Open));

                pbixBodyContent.Headers.Add("Content-Type", "application/octet-stream");
                pbixBodyContent.Headers.Add("Content-Disposition",
                                             @"form-data; name=""file""; filename=""" + pbixFilePath + @"""");


                MultipartFormDataContent requestBody = new MultipartFormDataContent(Guid.NewGuid().ToString());
                requestBody.Add(pbixBodyContent);

                HttpClient client = new HttpClient();
                client.DefaultRequestHeaders.Add("Accept", "application/json");
                client.DefaultRequestHeaders.Add("Authorization", "Bearer " + AccessToken);


                Console.WriteLine("Enviando Cubo: " + NomedoCubo);
                var response = client.PostAsync(restUrlImportPbix, requestBody).Result;

                //  Check de Sucesso
                if (response.StatusCode.ToString().Equals("Accepted"))
                {
                    Console.WriteLine("Processo de Importação efetuado com Sucesso: " + NomedoCubo);
                }
                else {
                    Console.WriteLine("Processo com erro: " + response.StatusCode);
                }
            }
            else {
                Console.WriteLine("Arquivo não encontrado." + NomedoCubo); 
            }

I´m receiving InternalServerError for all my tenant customers. It´s strange because I was using last month andit was workin percfectly. Did anyone found the same problem?

1) I have pro license.
2) It was working properly.

3) My code is the same.

0 REPLIES 0

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors