GET api/state_mst?STATE_ID={STATE_ID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
STATE_ID | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of state_mstName | Description | Type | Additional information |
---|---|---|---|
STATE_ID | integer |
None. |
|
STATE_NM | string |
None. |
|
STATE_CODE | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "STATE_ID": 1, "STATE_NM": "sample string 1", "STATE_CODE": "sample string 2" }, { "STATE_ID": 1, "STATE_NM": "sample string 1", "STATE_CODE": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfstate_mst xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControllerLibrary"> <state_mst> <STATE_CODE>sample string 2</STATE_CODE> <STATE_ID>1</STATE_ID> <STATE_NM>sample string 1</STATE_NM> </state_mst> <state_mst> <STATE_CODE>sample string 2</STATE_CODE> <STATE_ID>1</STATE_ID> <STATE_NM>sample string 1</STATE_NM> </state_mst> </ArrayOfstate_mst>