Hello everyone
I have a flow that creates a tile (promoted link) in Sharepoint but I can't get it to place my tile in the correct order. It always places my new tiles first. However, I would like them to be placed according to their ID number. Otherwise the flow works fine.
Below is my attempt to do this, but it is unfortunately not working. I have tried placing the part "Order": "Output" several places, but usually it doesn't do anything... Not even an error. The Output is just an integer of the ID, as I thought it had to be an integer and not a string.
If anyone has a suggestion as to how this might be achieved it would be greatly appreciated.
Solved! Go to Solution.
Hi @ToFj,
I believe the name of the field is TileOrder. Try the following syntax in your body field of the action.
{
"__metadata": {
"type": "@{outputs('Send_an_HTTP_request_to_SharePoint')?['body/ListItemEntityTypeFullName']}"
},
"Title": "Testing Promoted Links Order",
"LinkLocation": {
"Description": "BBC",
"Url": "https://bbc.co.uk"
},
"TileOrder": "8"
}
Hi @ToFj,
I believe the name of the field is TileOrder. Try the following syntax in your body field of the action.
{
"__metadata": {
"type": "@{outputs('Send_an_HTTP_request_to_SharePoint')?['body/ListItemEntityTypeFullName']}"
},
"Title": "Testing Promoted Links Order",
"LinkLocation": {
"Description": "BBC",
"Url": "https://bbc.co.uk"
},
"TileOrder": "8"
}
Thank you very much @Expiscornovus
Tried looking for the correct field syntax in the dev tool, but I see now that I was looking in the wrong place. This is a great tip though, will definitely check this next time.
User | Count |
---|---|
92 | |
44 | |
20 | |
19 | |
15 |
User | Count |
---|---|
135 | |
54 | |
43 | |
42 | |
31 |