Microsoft Flow – Create SharePoint list items using Xml

You have data stored in XML and you want to use this to create list items in SharePoint and you thing that Microsoft Flow might be able to help you. You couldn’t be more right. Flow can help you, but is it something that is easy to do? No! Although once you know how to do it it is quite easy.

My starting point

I am using the following XML to set a variable in my flow.

Now I first want to collect an array of list items. I’m using xpath in a Compose step to do this.

xpath(xml(variables('XML')),'//XML/ListItems/ListItem')

Then I take the output from the Compose action and walk through the array of list items.

I hear you ask: “What is that $content?”. I’m simply taking each item in the Apply to Each and grab the $content.

To really understand this you might want to look at the output from the first Compose actions.

now you can see for each item we have a $content element in json. To get to this data we can set the expression on the Compose 2 action to the following

items('apply-to-each')?['$content']

but now we still have the unreadable text starting with “PE…”. to convert this into a readable XML, we will need to use the base64ToString() function.

base64ToString(items('apply-to-each')?['$content'])

Now we have the Xml for each list item:

Now all we need to do is repeat our selves inside the Apply to Each for each of the list items.

This time I’m avoiding the base64ToString function by using the text() function instead

 

xpath(Xml(outputs('Compose_3')),'//ListItem/*[self::Title or self::Description]/text()')

No when we look at the output from my final compose step we have an array of values that we can use to create our list items in SharePoint or any other place where you would like to use this data:

If you still want to keep the field names form the original  Xml that we started with then you could adjust the expression and not use the text() function. However I thought from an educational point of view the showing the different options in this post would be more useful.

 

Share
Pieter Veenstra

Business Applications Microsoft MVP working as the Head of Power Platform at Vantage 365. You can contact me using contact@sharepains.com

View Comments

  • Hi Pieter
    This works fine for simple fields like you describe. However, there are issues with more complex fields like Lookup Fields.

    Regards

    Nigel

    • Hi Nigel, This will work for any field. On purpose I didn't include the create/update list item yet. This is where you should handle the conversion of data. The Create List Item action takes values at the moment and you might have to put some logic in your flow to convert values to create valid SharePoint data

  • Hello Pieter,
    that's exactly what I need for my SharePoint solution, but unfortunately, I'm the beginner in MS Flow and I have lost on my way to try to implement your steps. Can you add here (or send me by e-mail) the ZIP file for import to my library of flows? And what will be the difference if I have URL for XML file which is dynamically changing (like RSS but doesn't RSS syntax)?
    Thanks
    Jakub

    • Hi Jakub,

      All you would need to do is put the XML in a file in a library then use a get content step from the SharePoint connector. Then you've got your xml available which you can use to set the Compose actions.

      Then once you've got that the following steps will remain the same.

  • Hi Jakub,

    I can't really create a zip file for you to import. I wouldn't have all the field name exactly the same as you may have on your list.

  • Oh my goodness, thank you so much for this! I was having such a time trying to figure out the base64 issue and your post cleared it right up.

  • Hello Pieter
    Thank you for this,
    Question can you give me some advice to convert the outputs to map with some fields in a new business central record ?
    Thanks in advance

  • How can I stop the flow once all items in the excel list have been created in the sharepoint list? Currently, its creating the items but multiple times.

    • That must mean that you have some incorrect apply to each steps configured. Have a look at the flow run and see where the incorrect apply to each step is.

  • Hi Peter, I am a cit-dev and have a select action in power automate that returns a $content-type and $content.
    addProperty(item(),'Comments',xpath(outputs('XMLComments'),concat('//Array[ProjectId/text()="', item()['ID'],'"]')))
    If what I understand from your blog is so, then I need to specifically extract only the $content and convert that to base64ToString
    If it possible to do that by modifying my select statement to convert that in one go?

    • Yes, you can do that within the select. Using the item function you can get to the $content. Then using the base64 functions you can convert base64 content.

Recent Posts

Introducing 8 AI Functions for Dataverse in Power Apps

Recently Microsoft added AI Functions to Dataverse that can be used in Power Apps. In…

2 days ago

Copy and paste Scope steps in the new Power Automate Designer

One of the outstanding issues with the new Power Automate Designer is Copy and Paste…

1 week ago

Receive the available storage within your SharePoint Online tenant

Within the SharePoint admin centre there is that little detailed overview, telling you the available…

1 month ago

Options for Documenting Your Power Apps: Comments, Code, and Controls

Within Power Apps there are various ways to document your app. In this post I'm…

1 month ago

2 ways to duplicate SharePoint Lists to support your Power Apps

Recently I've been asked quite a few times to duplicate SharePoint lists as part of…

1 month ago

Update a Hyperlink Column in SharePoint with Power Automate

Today, I was asked about how to create a lookup to a document or item…

1 month ago