Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
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?
Solved! Go to Solution.
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:
Following is a use case of importStates. ![]()
// 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
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:
Following is a use case of importStates. ![]()
// 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |