GET api/rmrreason
Returns all RMR Reasons
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of RMRReasonName | Description | Type | Additional information |
---|---|---|---|
RMRReasonId |
Sedona internal autonumber for RMR Reason |
integer |
None. |
RMRReasonCode |
Abbreviated RMR Reason |
string |
String length: inclusive between 0 and 25 |
Description |
Full description of RMR Reason |
string |
String length: inclusive between 0 and 50 |
Inactive |
Set to true for Inactive |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RMRReasonId": 1, "RMRReasonCode": "sample string 2", "Description": "sample string 3", "Inactive": true }, { "RMRReasonId": 1, "RMRReasonCode": "sample string 2", "Description": "sample string 3", "Inactive": true } ]
application/xml, text/xml
Sample:
<ArrayOfRMRReason xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models"> <RMRReason> <Description>sample string 3</Description> <Inactive>true</Inactive> <RMRReasonCode>sample string 2</RMRReasonCode> <RMRReasonId>1</RMRReasonId> </RMRReason> <RMRReason> <Description>sample string 3</Description> <Inactive>true</Inactive> <RMRReasonCode>sample string 2</RMRReasonCode> <RMRReasonId>1</RMRReasonId> </RMRReason> </ArrayOfRMRReason>