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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
nielsvdc
Advocate IV
Advocate IV

Fabric API environment item publish state issue

I am looking at the Fabric API to get information about a custom environment item. After automatic code deployment (git sync) using DevOps, I want to check if an environment is not published and needs to be published.

 

I have a workspace with a custom environment that shows me that I have unpublished changes and the environment needs to be published. Using the API all states that are returned show a Success state (see code below). I don't see any other API which is able to get the publish state. Is it me or is the API result not correct?

 

We don't have a support contract yet, so I can't report this directly to MS.

 

nielsvdc_0-1743086716424.png

{
  "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "type": "Environment",
  "displayName": "custom_environment",
  "description": "Environment",
  "workspaceId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "properties": {
    "$type": "EnvironmentArtifactPublicContent",
    "publishDetails": {
      "state": "Success",
      "targetVersion": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "startTime": "2024-12-11T21:38:22.8400654Z",
      "endTime": "2024-12-11T21:38:22.8400654Z",
      "componentPublishInfo": {
        "sparkLibraries": {
          "state": "Success"
        },
        "sparkSettings": {
          "state": "Success"
        }
      }
    }
  }
}

 

1 ACCEPTED SOLUTION

So to actually detect if an environment needs to be published after updating the workspace from Git, is to compare the results of the API's for the staged and published Spark libraries and Spark settings. If there are difference in the libraries or settings, the environment needs to be published for the changes to apply.

View solution in original post

2 REPLIES 2
nilendraFabric
Super User
Super User

Hi @nielsvdc 

 

The API is reporting that your last publish operation completed successfully, which is technically correct.

 

 

 

The “List staging libraries” API includes information about both published and pending libraries. This could help identify if there are pending changes

 

Get Environment Definition API: This newly added API might provide more comprehensive information about the current definition state compared to what’s published

 

 

 

https://learn.microsoft.com/en-us/fabric/data-engineering/environment-public-api

 

 

So to actually detect if an environment needs to be published after updating the workspace from Git, is to compare the results of the API's for the staged and published Spark libraries and Spark settings. If there are difference in the libraries or settings, the environment needs to be published for the changes to apply.

Helpful resources

Announcements
Fabric July 2025 Monthly Update Carousel

Fabric Monthly Update - July 2025

Check out the July 2025 Fabric update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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