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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
dgdragon
Frequent Visitor

Import Statuses

When I import a PBIX file, I can get the import status using the route:

https://api.powerbi.com/v1.0/myorg/groups/[org-id]/imports/[import-id]

and it returns something similar to:

 

{
"id": "[import-id]",
"importState": "Succeeded",
"createdDateTime": "2018-01-24T19:14:31.527Z",
"updatedDateTime": "2018-01-24T19:14:31.527Z",
"name": "[name]",
"connectionType": "import",
"source": "Upload",
"datasets": [],
"reports":[]
}

 

I would like to know what are the possible values are for "importState", is there a reference list somewhere?

 

 

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @dgdragon,

 

After a few research, I haven't found any article/blog that has a full list of importStates. However, I did find a few more importStates:

  • Publishing
  • Published
  • Succeeded
  • Failed

Following is a use case of importStates. Smiley Happy

                    // Example of polling the import to check when the import has finished.
                    while (import.ImportState != "Succeeded" && import.ImportState != "Failed")
                    {
                        import = await client.Imports.GetImportByIdAsync(workspaceCollectionName, workspaceId, import.Id);
                        Console.WriteLine("Checking import state... {0}", import.ImportState);
                        Thread.Sleep(1000);
                    }

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @dgdragon,

 

After a few research, I haven't found any article/blog that has a full list of importStates. However, I did find a few more importStates:

  • Publishing
  • Published
  • Succeeded
  • Failed

Following is a use case of importStates. Smiley Happy

                    // Example of polling the import to check when the import has finished.
                    while (import.ImportState != "Succeeded" && import.ImportState != "Failed")
                    {
                        import = await client.Imports.GetImportByIdAsync(workspaceCollectionName, workspaceId, import.Id);
                        Console.WriteLine("Checking import state... {0}", import.ImportState);
                        Thread.Sleep(1000);
                    }

 

Regards

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.