GET api/Common/GetStates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| LookupId | integer |
None. |
|
| LookupType | string |
None. |
|
| LookupValue | string |
None. |
|
| ContextId | string |
None. |
|
| Description | string |
None. |
|
| SequenceOrder | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LookupId": 1,
"LookupType": "sample string 2",
"LookupValue": "sample string 3",
"ContextId": "sample string 4",
"Description": "sample string 5",
"SequenceOrder": 6
},
{
"LookupId": 1,
"LookupType": "sample string 2",
"LookupValue": "sample string 3",
"ContextId": "sample string 4",
"Description": "sample string 5",
"SequenceOrder": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfStateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VitalOrder_v2_ServerApp.DTO">
<StateDTO>
<ContextId>sample string 4</ContextId>
<Description>sample string 5</Description>
<LookupId>1</LookupId>
<LookupType>sample string 2</LookupType>
<LookupValue>sample string 3</LookupValue>
<SequenceOrder>6</SequenceOrder>
</StateDTO>
<StateDTO>
<ContextId>sample string 4</ContextId>
<Description>sample string 5</Description>
<LookupId>1</LookupId>
<LookupType>sample string 2</LookupType>
<LookupValue>sample string 3</LookupValue>
<SequenceOrder>6</SequenceOrder>
</StateDTO>
</ArrayOfStateDTO>