GET api/rsmReportStyles

Get All Report Styles for RSM

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

RSMReportStyleViewModel

Collection of RSMReportStyleViewModel
NameDescriptionTypeAdditional 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>