Forum Discussion
Maria Jose Pedreira Lata
Mar 30, 2017Copper Contributor
Logo URL Property Sharepoint SubSite using API REST
I need to obtain several properties of all websites of a root site. I am using: http://xxxxxxx/_api/web/webinfos?$select=ServerRelativeUrl,Title,Description With this url I get Description...
- Mar 30, 2017The webinfos endpoint is returning a SP.WebInformation object (https://msdn.microsoft.com/en-us/library/office/jj246973.aspx) which not contains any property for that Logo.
I think you have to jump to the specific subsite to ask for the SiteLogoUrl:
/sites/root/subsite/_api/web/SiteLogoUrl
Luis Mañez
Mar 30, 2017MVP
The webinfos endpoint is returning a SP.WebInformation object (https://msdn.microsoft.com/en-us/library/office/jj246973.aspx) which not contains any property for that Logo.
I think you have to jump to the specific subsite to ask for the SiteLogoUrl:
/sites/root/subsite/_api/web/SiteLogoUrl
I think you have to jump to the specific subsite to ask for the SiteLogoUrl:
/sites/root/subsite/_api/web/SiteLogoUrl
Maria Jose Pedreira Lata
Mar 31, 2017Copper Contributor
Thank you Luis, it works for me!