web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / How to move a SharePoi...
Power Automate
Answered

How to move a SharePoint list item to a folder after creation (same list)?

(2) ShareShare
ReportReport
Posted on by 12

Hi everyone,

I've been researching this but couldn’t find a clear answer, so I’m hoping someone here can help.

I'm working with a SharePoint list (not a document library), and I'm trying to create a new item and then move it into a specific folder within the same list.

The list is called "PFE 2025", and folders are enabled. From what I’ve found so far, it doesn’t seem possible to directly create an item inside a folder using the standard "Create item" action in Power Automate — there’s no visible "Folder Path" field like in document libraries.

So here’s my question:

 

Is it possible to first create the item, and then move it into the appropriate folder within the same list?

 

If so, what would be the recommended approach?


  • Using HTTP requests with the SharePoint REST API?

  • Manually recreating the item in the folder and deleting the original one?

I’d really appreciate any insight, best practices, or examples from the community.

Thanks in advance for your help!

Categories:
I have the same question (0)
  • Verified answer
    StretchFredrik Profile Picture
    3,397 Super User 2025 Season 2 on at
    Hello,
     
    You can either -> 
     
    Move the item via a flow:
     
    Trigger: "When an item is created or modified"
    Get the item's current path and name.
    Build the new path: RootFolder/TargetFolder/FileName
    Use Send an HTTP request to SharePoint with:
    Method: POST
    URI: /_api/web/getfilebyserverrelativeurl( <current path>')/moveto(newurl='<new path>',flags=1)
     
    Or you can create it directly in the folder using below steps:
     
    HTTP POST REQUEST ->
    URI: _api/web/lists/GetByTitle('<ListName>')/AddValidateUpdateItemUsingPath
     
    Body: 
    {
      "listItemCreateInfo": {
        "FolderPath": {
          "DecodedUrl": "/sites/yoursite/Lists/PFE 2025/YourFolder"
        },
        "UnderlyingObjectType": 0
      },
      "formValues": [
        {
          "FieldName": "Title",
          "FieldValue": "Your Item Title"
        }
      ],
      "bNewDocumentUpdate": false
    }
     
    If my response solved your issue, please mark it as ✅ Accepted Answer and give it a like.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 519 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 296 Moderator

#3
abm abm Profile Picture

abm abm 232 Most Valuable Professional

Last 30 days Overall leaderboard