Hi everyone,
Does someone know how I can add new tile (promoted link)? I have been trying the same techniques as when I have created list items or library content, but this doesn't seem to work. And it is confusing me because it doesn't show up as library or a list.
Just to specify, I don't want to create the whole "app" just a tile within of these "apps/lists".
If anyone has a suggestion, that would be greatly appreciated.
Solved! Go to Solution.
Hi @ToFj,
This should be possible with the Send an HTTP request to SharePoint action.
1. First collect the ListItemEntityTypeFullName value of your SharePoint Tile List. Replace/set the ListName variable by the name of your current Tiles App list name.
2. Use the following Body to create a new Tile
{
"__metadata": {
"type": "@{outputs('Send_an_HTTP_request_to_SharePoint')?['body/ListItemEntityTypeFullName']}"
},
"Title": "Testing Promoted Links",
"LinkLocation": {
"Description": "Microsoft",
"Url": "https://www.microsoft.com"
}
}
More information about working with lists via the REST API can be found over here btw: https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/working-with-lists-and-list-items-with-re...
Hi @ToFj,
This should be possible with the Send an HTTP request to SharePoint action.
1. First collect the ListItemEntityTypeFullName value of your SharePoint Tile List. Replace/set the ListName variable by the name of your current Tiles App list name.
2. Use the following Body to create a new Tile
{
"__metadata": {
"type": "@{outputs('Send_an_HTTP_request_to_SharePoint')?['body/ListItemEntityTypeFullName']}"
},
"Title": "Testing Promoted Links",
"LinkLocation": {
"Description": "Microsoft",
"Url": "https://www.microsoft.com"
}
}
More information about working with lists via the REST API can be found over here btw: https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/working-with-lists-and-list-items-with-re...
Thank you very much, @Expiscornovus. Works like a charm.
I will be sure to check that link out as well. Looks like I can pick up some stuff there regarding REST API.
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
80 | |
55 | |
55 | |
43 | |
39 |
User | Count |
---|---|
84 | |
81 | |
76 | |
63 | |
42 |