Add a SharePoint List to Quick Launch Using Power Automate

Yesterday, one of my subscribers reached out with an interesting requirement: they needed to create a SharePoint list and its columns using Power Automate and have that list automatically show up in the SharePoint site’s left-hand navigation (the quick launch menu).

In this tutorial, I will tell you how to add a SharePoint list link to the SharePoint site’s left navigation pane in Power Automate.

Add a SharePoint List to Quick Launch Using Power Automate

Now I’ll create a flow that first creates the SharePoint list and then automatically adds its link to the left navigation pane. To do this, follow the steps below:

  1. Go to Power Automate and click Create -> Instant Cloud Flow. Select Manually trigger a flow as the trigger. Click + Add an input and add the following inputs:
    • SiteAddress (Type: Text)
    • ListName (Type: Text)
Power Automate flow to add SharePoint list link to site left navigation
  1. Then add a Send an HTTP request to SharePoint action from SharePoint Connector with the below parameter to create the SharePoint list:
_api/web/Lists/
  1. Headers:
{
  "content-type": "application/json;odata=verbose",
  "accept": "application/json;odata=verbose"
}
  1. Body:
{ '__metadata': { 'type': 'SP.List' }, 'AllowContentTypes': true,
 'BaseTemplate': 100, 'Description': 'My list description', 'Title': '@{triggerBody()?['text_1']}' }
How to insert SharePoint list shortcut in left pane using Power Automate
  1. Add again a Send an HTTP request to SharePoint action from SharePoint Connector with the below parameter to add a link to the left pane:
_api/web/lists/getbytitle('@{triggerBody()?['text_1']}')  
  1. Headers:
{
  "Accept": "application/json;odata=verbose",
  "Content-Type": "application/json;odata=verbose",
  "IF-MATCH": "*",
  "X-HTTP-Method": "MERGE"
}
  1. Body:
{
  "__metadata": { "type": "SP.List" },
  "OnQuickLaunch": true
}
Add custom list link to SharePoint Quick Launch menu with Power Automate

Run the Flow and See the Result

Click Save in the top-right corner of the designer. Click Test -> Manually. Enter the SiteAddress (for example, https://contoso.sharepoint.com/sites/TeamSite) and the ListName (for example, ProjectTasks). Select Run flow, then Done.

SharePoint navigation pane displaying new list link created by Power Automate

After the flow runs successfully, go to the SharePoint site URL you entered. Refresh the page. You should now see the new list (for example, ProjectTasks) in the left-hand navigation/Quick Launch menu.

Add a SharePoint List Link to the Left Pane In Power Automate

You may also like the following tutorials:

Power Apps functions free pdf

30 Power Apps Functions

This free guide walks you through the 30 most-used Power Apps functions with real business examples, exact syntax, and results you can see.

Live Webinar

Quiz App Using SharePoint Framework (SPFx)

Learn to built a complete Quiz Management solution that enables admins to create and manage quizzes, categories, questions, and settings with an easy automated setup process in SharePoint. It also includes an interactive quiz experience for users and a powerful dashboard to track participation, analyze results, and view detailed performance reports with charts and answer insights.

📅 2nd June 2026 – 10:00 AM EST | 7:30 PM IST

Download User registration canvas app

DOWNLOAD USER REGISTRATION POWER APPS CANVAS APP

Download a fully functional Power Apps Canvas App (with Power Automate): User Registration App