I am currently using Sharepoint web services in order to retrive information about some Lists and ListItems.
My problem is about specifically dealing with hidden Lists i.e. lists whoe SPListTemplate.Hidden is True. Refer documentation for SPListTemplate.
Using the Sharepoint server object model, it is possible to check if a SPListTemplate is hidden. However, the XML fragment returned by Webs.GetListTemplates() by following the documentation here does not get information on whether the SPListTemplate is hidden or not.
I have verified within my application that the XML fragment we receive is exactly as what is mentioned in the documentation for Webs.GetListTemplates()..
Hence my question - how can I use the existing Microsoft Sharepoint web services to figure out if a list template is hidden or not?
Also the solution should be agnostic to the Sharepoint server versions (SP2007/2010/2013/Office Online)