GET api/rsmReportTypes
Get All ReportTypes for RSM
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
RSMReportViewModel
Collection of RSMReportTypeViewModelName | Description | Type | Additional information |
---|---|---|---|
ReportTypeID |
ReportTypeID |
integer |
None. |
ReportType |
ReportType |
string |
None. |
CreatedBy |
CreatedBy |
integer |
None. |
CreatedOn |
CreatedOn |
date |
None. |
ModifiedBy |
ModifiedBy |
integer |
None. |
ModifiedOn |
ModifiedOn |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "reportTypeID": 1, "reportType": "sample string 2", "createdBy": 1, "createdOn": "2025-04-03T17:38:48.0780714-04:00", "modifiedBy": 1, "modifiedOn": "2025-04-03T17:38:48.0780714-04:00" }, { "reportTypeID": 1, "reportType": "sample string 2", "createdBy": 1, "createdOn": "2025-04-03T17:38:48.0780714-04:00", "modifiedBy": 1, "modifiedOn": "2025-04-03T17:38:48.0780714-04:00" } ]
application/xml, text/xml
Sample:
<ArrayOfRSMReportTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <RSMReportTypeViewModel> <CreatedBy>1</CreatedBy> <CreatedOn>2025-04-03T17:38:48.0780714-04:00</CreatedOn> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2025-04-03T17:38:48.0780714-04:00</ModifiedOn> <ReportType>sample string 2</ReportType> <ReportTypeID>1</ReportTypeID> </RSMReportTypeViewModel> <RSMReportTypeViewModel> <CreatedBy>1</CreatedBy> <CreatedOn>2025-04-03T17:38:48.0780714-04:00</CreatedOn> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2025-04-03T17:38:48.0780714-04:00</ModifiedOn> <ReportType>sample string 2</ReportType> <ReportTypeID>1</ReportTypeID> </RSMReportTypeViewModel> </ArrayOfRSMReportTypeViewModel>