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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I'm trying to get workspace components git status calling GET https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/git/status (https://learn.microsoft.com/es-es/rest/api/fabric/core/git/get-status).
I use de "Try it" tab in the official page, and using my user token, it works. However, I need it to do with service principal authentication. Doc says Workspace.GitUpdate.All is enough:
I've added this API permission to my registered APP.
However, I call the API and I get a 400 bad request error:
If I change the token and I set my personal account token, it works. The issue is happening when I put registered APP token.
I get the token with:
{ "method": "POST", "headers": { "Content-Type": "application/x-www-form-urlencoded" }, "body": "grant_type=client_credentials&client_id=<client_id>&client_secret=<client_secret>&scope= https://analysis.windows.net/powerbi/api/.default " }
I've used this token also for other API calls such us:
Hi @amaaiia,
Does the sersvicce principal have contributor or higher on the workspaces? These permissions are different from the delegated permissions in my experience.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
Contributor role on the workspace
Hi @amaaiia,
Can you show me the exact POST request that you're sending? A 400 error usually means that your request is incorrect. Microsoft's APIs are particularly picky when it comes to the parameters and body.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
The POST request should be ok because if I change the Bearer token with a token of my personal account, I get 200 OK:
If I use service principal token, then I get 400:
But the POST request is the same.
@amaaiia Thanks for the info, so something is up with the service principal.
How are you generating the bearer token?
Can toy also confirm what delegated permissions the service principal has?
Here's my function for generating the bearer token using the MSAL library
def get_access_token():
app = ConfidentialClientApplication(
CLIENT_ID,
authority=AUTHORITY,
client_credential=CLIENT_SECRET,
)
result = app.acquire_token_for_client(scopes=SCOPE)
if 'access_token' in result:
return result['access_token']
else:
error = result.get('error', 'No error information')
error_description = result.get('error_description', 'No description')
raise Exception(f"Could not obtain access token. Error: {error}. Description: {error_description}")If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
I get the token with: https://login.microsoftonline.com/<tenant_id>/oauth2/v2.0/token
{ "method": "POST", "headers": { "Content-Type": "application/x-www-form-urlencoded" }, "body": "grant_type=client_credentials&client_id=<client_id>&client_secret=<client_secret>&scope= https://analysis.windows.net/powerbi/api/.default " }
And it works because I'm using it for other Fabric API calls such us: https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/{element_type}
These are API permissions, doc says GitUpdate is enough:
Hi @amaaiia,
It looks like you're doing everything right. I'd recommend opening a ticket with Microsoft at this point.
If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.
Hi @amaaiia ,
I hope you were successfully able to raise the support ticket.
If you have any issues, please let us know.
Thank You
| User | Count |
|---|---|
| 11 | |
| 6 | |
| 3 | |
| 3 | |
| 3 |