GET api/rsmReportTypes

Get All ReportTypes for RSM

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

RSMReportViewModel

Collection of RSMReportTypeViewModel
NameDescriptionTypeAdditional 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": "2024-10-14T04:19:58.4141073-04:00",
    "modifiedBy": 1,
    "modifiedOn": "2024-10-14T04:19:58.4141073-04:00"
  },
  {
    "reportTypeID": 1,
    "reportType": "sample string 2",
    "createdBy": 1,
    "createdOn": "2024-10-14T04:19:58.4141073-04:00",
    "modifiedBy": 1,
    "modifiedOn": "2024-10-14T04:19:58.4141073-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>2024-10-14T04:19:58.4141073-04:00</CreatedOn>
    <ModifiedBy>1</ModifiedBy>
    <ModifiedOn>2024-10-14T04:19:58.4141073-04:00</ModifiedOn>
    <ReportType>sample string 2</ReportType>
    <ReportTypeID>1</ReportTypeID>
  </RSMReportTypeViewModel>
  <RSMReportTypeViewModel>
    <CreatedBy>1</CreatedBy>
    <CreatedOn>2024-10-14T04:19:58.4141073-04:00</CreatedOn>
    <ModifiedBy>1</ModifiedBy>
    <ModifiedOn>2024-10-14T04:19:58.4141073-04:00</ModifiedOn>
    <ReportType>sample string 2</ReportType>
    <ReportTypeID>1</ReportTypeID>
  </RSMReportTypeViewModel>
</ArrayOfRSMReportTypeViewModel>