GET api/AdminEmailFolders/GetAdminSubFolderListByFolderID?FilderID={FilderID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FilderID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SubFolderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FolderID | integer |
None. |
|
| FolderName | string |
None. |
|
| SubFolderCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FolderID": 1,
"FolderName": "sample string 2",
"SubFolderCount": 3
},
{
"FolderID": 1,
"FolderName": "sample string 2",
"SubFolderCount": 3
}
]
text/xml
Sample:
<ArrayOfSubFolderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
<SubFolderModel>
<FolderID>1</FolderID>
<FolderName>sample string 2</FolderName>
<SubFolderCount>3</SubFolderCount>
</SubFolderModel>
<SubFolderModel>
<FolderID>1</FolderID>
<FolderName>sample string 2</FolderName>
<SubFolderCount>3</SubFolderCount>
</SubFolderModel>
</ArrayOfSubFolderModel>