Forum Discussion

dver344's avatar
dver344
Frequent Visitor
2 years ago
Solved

Microsoft Fabric API: 400 Bad Request

Hi guys!

 

Does anyone have more experience with the Microsoft Fabric API? I'm currently facing the issue that, when I try to reproduce an endpoint in Powershell, (e.g. https://learn.microsoft.com/en-us/rest/api/fabric/lakehouse/items/list-lakehouses?tabs=HTTP), I almost always get a 400 Bad request. I currently only got the 'List all workspaces' to work, but I'm kinda stuck after this.

 

I'm asking since I know that the Fabric API is for a lot of endpoints still in preview.

Update: https://learn.microsoft.com/en-us/rest/api/fabric/core/items/list-items?tabs=HTTP seems to work to list all the possible items inside of your workspace, but then you have to filter yourself. While the list-lakehouses endpoint should return all possible lakehouses.

 

Thanks!

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi dver344 ,

    Base on your description, it seems like you got 400 bad request error when call Fabric API Items - List LakehousesA 400 Bad Request error typically indicates that the server cannot process the request due to client-side issues. Did you get the required permission and scope?

    As I tested in my side, it can return the expected result...

    Best Regards

    • dver344's avatar
      dver344
      Frequent Visitor

      Hi there!

      Thanks for the response. I figured out the issue by looking closer at the response body:

      Response body: {"requestId":"XXX","errorCode":"PrincipalTypeNotSupported","message":"The operation is not supported for the principal type"}

      So basically, I've been using a service principal as suggested in the quickstart guide. I've been able to load lists of workspaces, items, ... and have already been able to create some cool powershell scripts with it. However, I'm unable to create items (lakehouses, notebooks, ...) dynamically due to this limitation. If I want to generate a token, I always need to use 'copy(powerBIAccessToken)' inside of the dev-tools in my browser itself.

      The general Powershell functions to generate a new token via 'Get-PowerBIAccessToken' inside a powershell script doesn't seem to work. It states that if I do it via that way, I have insufficient permissions:

      {
          "requestId": "XXX",
          "errorCode": "InsufficientScopes",
          "message": "The caller does not have sufficient scopes to perform this operation"
      }

       

      If I do it in the browser via 'copy(...)', and use that bearer token in my request, it will work and creates items, ...

      Is there some news on this front as well? Why there is a difference between copy() via the DevTools in the browser compared to using the Get-PowerBIAccessToken inside your Powershell script? I'm logging in with the same user each time, so it shouldn't matter much.

      Thanks!