GET api/rsmReportTypes?id={id}

Get All ReportTypes for RSM

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

RSMReportViewModel

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:23:18.356761-04:00",
  "modifiedBy": 1,
  "modifiedOn": "2024-10-14T04:23:18.356761-04:00"
}

application/xml, text/xml

Sample:
<RSMReportTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <CreatedBy>1</CreatedBy>
  <CreatedOn>2024-10-14T04:23:18.356761-04:00</CreatedOn>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2024-10-14T04:23:18.356761-04:00</ModifiedOn>
  <ReportType>sample string 2</ReportType>
  <ReportTypeID>1</ReportTypeID>
</RSMReportTypeViewModel>