<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Create Sharepoint shortcut in Fabric lakehouse by code/API in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192018#M16504</link>
    <description>&lt;P&gt;I realized I was entering the payload incorrectly. I updated it, but I'm still getting the same error (&lt;SPAN&gt;"The caller does not have sufficient scopes to perform this operation).&lt;/SPAN&gt; My personal account is an Admin on the workspace, and I do have access to the SharePoint site. The connectionId I'm using works because I'm using it to cerate shortcuts manually in the lakehouse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried something else, which was using a service principal instead of my own account. I granted the app the necessary API permissions, and I think I’ve resolved that issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;credential = ClientSecretCredential(
    tenant_id=tenant_id,
    client_id=client_id,
    client_secret=client_secret
)

def get_token():
    return credential.get_token(
        "https://api.fabric.microsoft.com/.default"
    ).token

client = FabricRestClient(token_provider=get_token)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, when I list the connections, I can see them. But now I’m getting another error when trying to create a new shortcut using that connection:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;payload = {
    "name": shortcut_name,
    "path": "Files",
    "target": {
        "oneDriveSharePoint": {
            "connectionId": connectionId,
            "location": location,
            "subpath": subpath
        }
    }
}

response = client.post(
    f"/v1/workspaces/{new_ws_id}/items/{lakehouse_id}/shortcuts",
    json=payload
)

if response.status_code not in [200, 201]:
    print(response.text)
    raise Exception(response.text)

print("✅ Shortcut created")&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;FabricHTTPException
400 Bad Request for url: https://api.fabric.microsoft.com//v1/workspaces/xxxxxxxxxxxxxx/items/xxxxxxxxxxxxxxxxx/shortcuts Error: {"requestId":"xxxxxxxxxxxx","errorCode":"BadRequest","moreDetails":[{"errorCode":"SharePointResourceNotFound","message":"Error getting DriveId from SharePoint API: Forbidden. StatusCode: Forbidden. Details: {\"StatusCode\":403,\"ReasonPhrase\":\"Forbidden\",\"RequestUri\":\"https://xxxxx.sharepoint.com/sites/YYYYYYYYYYY/_api/v2.0/shares/u!xxxxxxxxxxxxxxxxxx/drive?$select=id,name,driveType,folder\",\"Details\":\"{\\\"error\\\":{\\\"code\\\":\\\"accessDenied\\\",\\\"innerError\\\":{\\\"code\\\":\\\"sharesAccessDenied\\\"},\\\"message\\\":\\\"The system cannot find the file specified. (Exception from HRESULT: 0x80070002)\\\",\\\"@onedrive.linkFeatures\\\":[]}}\"}"}],"message":"The request could not be processed due to missing or invalid information","isRetriable":false} Headers: {'Cache-Control': 'no-store, must-revalidate, no-cache', 'Pragma': 'no-cache', 'Transfer-Encoding': 'chunked', 'Content-Type': 'application/json; charset=utf-8', 'x-ms-public-api-error-code': 'BadRequest', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains', 'X-Frame-Options': 'deny', 'X-Content-Type-Options': 'nosniff', 'RequestId': 'xxxxxxxxxxxx', 'Access-Control-Expose-Headers': 'RequestId', 'request-redirected': 'true', 'home-cluster-uri': 'https://wabi-north-europe-i-primary-redirect.analysis.windows.net/', 'Date': 'Tue, 02 Jun 2026 14:46:17 GMT'}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- My connection is using Service Principal authentication (specifically, I have an app that has access to the SharePoint site, and that’s the one I use for authentication in the connection). Connection is working because I use it to create shortcuts manually.&lt;BR /&gt;- I have another master app that I use to create the Fabric token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jun 2026 14:53:37 GMT</pubDate>
    <dc:creator>amaaiia</dc:creator>
    <dc:date>2026-06-02T14:53:37Z</dc:date>
    <item>
      <title>Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5191877#M16500</link>
      <description>&lt;P&gt;I have a Microsoft Fabric connection set up with SharePoint. Manually, I can use that connection to create a shortcut in a Lakehouse for a SharePoint site.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to perform this process via API/code. I want to be able to create a shortcut in a Lakehouse using the &lt;STRONG&gt;lakehouse_id&lt;/STRONG&gt; (the ID of the Lakehouse where I want to create the shortcut), &lt;STRONG&gt;connection_id&lt;/STRONG&gt; (the ID of the SharePoint connection), &lt;STRONG&gt;sharepoint_relative_path&lt;/STRONG&gt; (the relative SharePoint path I want to save as a shortcut under “Files” in the Lakehouse), and &lt;STRONG&gt;shortcut_name&lt;/STRONG&gt; (the name I want to give that shortcut in the Lakehouse).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried with:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from sempy.fabric import FabricRestClient
client = FabricRestClient()

shortcut_name = "projects_shortcut"

response = client.post(
    f"/v1/workspaces/{ws_id}/items/{lakehouse_id}/shortcuts",
    json={
        "displayName": shortcut_name,
        "path": "Files",
        "target": {
            "type": "SharePoint",
            "connectionId": connecion_id,
            "path": sharepoint_relative_path
        }
    }
)

if response.status_code not in [200, 201]:
    raise Exception(response.text)

print("✅ Shortcut created")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I get:&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;FabricHTTPException&lt;/DIV&gt;&lt;DIV class=""&gt;403 Forbidden for url:&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;I've tried also:&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-CODE lang="python"&gt;from sempy.fabric import FabricRestClient
client = FabricRestClient()
client.get("/v1/connections")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I get the same 403 Forbidden error.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 10:31:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5191877#M16500</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2026-06-02T10:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5191965#M16502</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The API you are trying to use is the correct one,&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/rest/api/fabric/core/onelake-shortcuts/create-shortcut?tabs=HTTP" target="_blank"&gt;https://learn.microsoft.com/en-us/rest/api/fabric/core/onelake-shortcuts/create-shortcut?tabs=HTTP&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that your body has incorrect parameters, specifically there is no "displayName" property.&amp;nbsp;&lt;BR /&gt;Here is the sharepoint example from the documentation:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;POST &lt;A href="https://api.fabric.microsoft.com/v1/workspaces/bf94607f-3ba1-4a95-8259-27649ccd7755/items/884e71cd-f5b4-45f9-8e00-b71355f7ea5d/shortcuts" target="_blank"&gt;https://api.fabric.microsoft.com/v1/workspaces/bf94607f-3ba1-4a95-8259-27649ccd7755/items/884e71cd-f5b4-45f9-8e00-b71355f7ea5d/shortcuts&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;{&lt;BR /&gt;"path": "Files",&lt;BR /&gt;"name": "MyOneDriveSharePoint",&lt;BR /&gt;"target": {&lt;BR /&gt;"oneDriveSharePoint": {&lt;BR /&gt;"location": "&lt;A href="https://microsoft.sharepoint.com" target="_blank"&gt;https://microsoft.sharepoint.com&lt;/A&gt;",&lt;BR /&gt;"subpath": "/Shared Documents/Test Folder",&lt;BR /&gt;"connectionId": "97e33458-1353-4911-96b1-6f4f4bbfd335",&lt;BR /&gt;"updateFabricItemSensitivity": false&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The 403 error means whatever user is being used does not have permissions to do what you are trying to do. Can you confirm if you are using your account or a service principal to run the notebook? Can you confirm what workspace permissions you have on the workspace where the lakehouse you are trying to add a shortcut to is?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 13:26:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5191965#M16502</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-06-02T13:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192018#M16504</link>
      <description>&lt;P&gt;I realized I was entering the payload incorrectly. I updated it, but I'm still getting the same error (&lt;SPAN&gt;"The caller does not have sufficient scopes to perform this operation).&lt;/SPAN&gt; My personal account is an Admin on the workspace, and I do have access to the SharePoint site. The connectionId I'm using works because I'm using it to cerate shortcuts manually in the lakehouse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried something else, which was using a service principal instead of my own account. I granted the app the necessary API permissions, and I think I’ve resolved that issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;credential = ClientSecretCredential(
    tenant_id=tenant_id,
    client_id=client_id,
    client_secret=client_secret
)

def get_token():
    return credential.get_token(
        "https://api.fabric.microsoft.com/.default"
    ).token

client = FabricRestClient(token_provider=get_token)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, when I list the connections, I can see them. But now I’m getting another error when trying to create a new shortcut using that connection:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;payload = {
    "name": shortcut_name,
    "path": "Files",
    "target": {
        "oneDriveSharePoint": {
            "connectionId": connectionId,
            "location": location,
            "subpath": subpath
        }
    }
}

response = client.post(
    f"/v1/workspaces/{new_ws_id}/items/{lakehouse_id}/shortcuts",
    json=payload
)

if response.status_code not in [200, 201]:
    print(response.text)
    raise Exception(response.text)

print("✅ Shortcut created")&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;FabricHTTPException
400 Bad Request for url: https://api.fabric.microsoft.com//v1/workspaces/xxxxxxxxxxxxxx/items/xxxxxxxxxxxxxxxxx/shortcuts Error: {"requestId":"xxxxxxxxxxxx","errorCode":"BadRequest","moreDetails":[{"errorCode":"SharePointResourceNotFound","message":"Error getting DriveId from SharePoint API: Forbidden. StatusCode: Forbidden. Details: {\"StatusCode\":403,\"ReasonPhrase\":\"Forbidden\",\"RequestUri\":\"https://xxxxx.sharepoint.com/sites/YYYYYYYYYYY/_api/v2.0/shares/u!xxxxxxxxxxxxxxxxxx/drive?$select=id,name,driveType,folder\",\"Details\":\"{\\\"error\\\":{\\\"code\\\":\\\"accessDenied\\\",\\\"innerError\\\":{\\\"code\\\":\\\"sharesAccessDenied\\\"},\\\"message\\\":\\\"The system cannot find the file specified. (Exception from HRESULT: 0x80070002)\\\",\\\"@onedrive.linkFeatures\\\":[]}}\"}"}],"message":"The request could not be processed due to missing or invalid information","isRetriable":false} Headers: {'Cache-Control': 'no-store, must-revalidate, no-cache', 'Pragma': 'no-cache', 'Transfer-Encoding': 'chunked', 'Content-Type': 'application/json; charset=utf-8', 'x-ms-public-api-error-code': 'BadRequest', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains', 'X-Frame-Options': 'deny', 'X-Content-Type-Options': 'nosniff', 'RequestId': 'xxxxxxxxxxxx', 'Access-Control-Expose-Headers': 'RequestId', 'request-redirected': 'true', 'home-cluster-uri': 'https://wabi-north-europe-i-primary-redirect.analysis.windows.net/', 'Date': 'Tue, 02 Jun 2026 14:46:17 GMT'}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- My connection is using Service Principal authentication (specifically, I have an app that has access to the SharePoint site, and that’s the one I use for authentication in the connection). Connection is working because I use it to create shortcuts manually.&lt;BR /&gt;- I have another master app that I use to create the Fabric token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 14:53:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192018#M16504</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2026-06-02T14:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192026#M16505</link>
      <description>&lt;P&gt;Copilot tells me that this issue is because the app I'm using to get fabric token doesn't have access to sharepoint. But it this true?&lt;/P&gt;&lt;P&gt;When I create manual shortcuts using this connection, it uses the token from my personal account, which shouldn't have access to SharePoint, since it's the connection itself—which uses Service Principal authentication—that authenticates against SharePoint.&lt;/P&gt;&lt;P&gt;I understand that even if I use another app to obtain the token, the behavior should be the same—that is, the Fabric token app does not have access to SharePoint (just like my personal account)—but when using the SharePoint connection with the app that DOES have access to SharePoint, it is that app that is used for authentication with the SharePoint site.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 15:07:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192026#M16505</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2026-06-02T15:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192251#M16507</link>
      <description>&lt;P&gt;I've designed a mockup to better understand de use case of what is happening:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Designer (33).png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1351111iBA2C0EC4AAFB7DC4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Designer (33).png" alt="Designer (33).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 05:43:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192251#M16507</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2026-06-03T05:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192544#M16513</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How was your service principal granted access to the sharepoint site?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it have Sites.Selected?&amp;nbsp;&lt;BR /&gt;See this post for more info on how to grant permissions properly:&amp;nbsp;&lt;SPAN data-teams="true"&gt;&lt;A class="" title="https://heyniels.com/2026/03/15/connect-fabric-to-sharepoint-after-the-acs-retirement/" href="https://heyniels.com/2026/03/15/connect-fabric-to-sharepoint-after-the-acs-retirement/" target="_blank" rel="noreferrer noopener" aria-label="Link https://heyniels.com/2026/03/15/connect-fabric-to-sharepoint-after-the-acs-retirement/"&gt;https://heyniels.com/2026/03/15/connect-fabric-to-sharepoint-after-the-acs-retirement/&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 14:13:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5192544#M16513</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-06-03T14:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5194133#M16577</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt;"&gt;&lt;SPAN&gt;I would also take a moment to thank&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt; color: black;"&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 04:18:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5194133#M16577</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-06-08T04:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sharepoint shortcut in Fabric lakehouse by code/API</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5195863#M16630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;,&lt;BR /&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We are always here to support you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 04:42:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Create-Sharepoint-shortcut-in-Fabric-lakehouse-by-code-API/m-p/5195863#M16630</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-06-11T04:42:48Z</dc:date>
    </item>
  </channel>
</rss>

