GET api/rsmReportStyles/getById?id={id}
Get All StyleTypes for RSM
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RSMStyleTypeViewModel
Collection of RSMReportStyleViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
StyleTypeID |
integer |
None. |
| Name |
StyleTypeName |
string |
None. |
| FolderPath |
StyleTypeFolderPath |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"folderPath": "sample string 3"
},
{
"id": 1,
"name": "sample string 2",
"folderPath": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfRSMReportStyleViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<RSMReportStyleViewModel>
<FolderPath>sample string 3</FolderPath>
<Id>1</Id>
<Name>sample string 2</Name>
</RSMReportStyleViewModel>
<RSMReportStyleViewModel>
<FolderPath>sample string 3</FolderPath>
<Id>1</Id>
<Name>sample string 2</Name>
</RSMReportStyleViewModel>
</ArrayOfRSMReportStyleViewModel>