GET api/rsmReportTypes?id={id}
Get All ReportTypes for RSM
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RSMReportViewModel
RSMReportTypeViewModel| Name | 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
{
"reportTypeID": 1,
"reportType": "sample string 2",
"createdBy": 1,
"createdOn": "2025-10-29T04:36:36.6735917-04:00",
"modifiedBy": 1,
"modifiedOn": "2025-10-29T04:36:36.6735917-04:00"
}
application/xml, text/xml
<RSMReportTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <CreatedBy>1</CreatedBy> <CreatedOn>2025-10-29T04:36:36.6735917-04:00</CreatedOn> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2025-10-29T04:36:36.6735917-04:00</ModifiedOn> <ReportType>sample string 2</ReportType> <ReportTypeID>1</ReportTypeID> </RSMReportTypeViewModel>