GET api/rsmRunTypes
Get All RunTypes for RSM
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
RSMRunTypeViewModel
Collection of RSMRunTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RunTypeID |
RunTypeID |
integer |
None. |
| RunType |
RunType |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"runTypeID": 1,
"runType": "sample string 2"
},
{
"runTypeID": 1,
"runType": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfRSMRunTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<RSMRunTypeViewModel>
<RunType>sample string 2</RunType>
<RunTypeID>1</RunTypeID>
</RSMRunTypeViewModel>
<RSMRunTypeViewModel>
<RunType>sample string 2</RunType>
<RunTypeID>1</RunTypeID>
</RSMRunTypeViewModel>
</ArrayOfRSMRunTypeViewModel>