Retrieving properties of an item in a folder
The following request looks for every item in the TimeStudy folder and asks for the name, ID, size, and version of each. To identify the folder, you must use a path.
<SOAP-ENV:Body>
<GetFolderItems>
<FolderName>/TimeStudy</FolderName>
<ResultDef>
<String>Name</String>
<String>Id</String>
<String>Size</String>
<String>Version</String>
</ResultDef>
</GetFolderItems>
</SOAP-ENV:Body>
The preceding request returns the requested properties for each item in the folder and a total count of items returned.
<SOAP-ENV:Body>
<GetFolderItemsResponse>
<Files>
<File>
<Name>Engineering.rptdesign</Name>
<Id>642</Id>
<Version>1</Version>
<Size>38912</Size>
</File>
<File>
<Name>chart.gif</Name>
<Id>879</Id>
<Version>6</Version>
<Size>38912</Size>
</File>
<File>
<Id>1380</Id>
<Name>Research.rptdesign</Name>
<Version>3</Version>
<Size>38912</Size>
</File>
</Files>
<TotalCount>3</TotalCount>
</GetFolderItemsResponse>
</SOAP-ENV:Body>