GET api/v1/getStates

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ModelStateMaster
NameDescriptionTypeAdditional information
id

integer

None.

state

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "state": "sample string 2"
  },
  {
    "id": 1,
    "state": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfModelStateMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CeliacDataBridge">
  <ModelStateMaster>
    <id>1</id>
    <state>sample string 2</state>
  </ModelStateMaster>
  <ModelStateMaster>
    <id>1</id>
    <state>sample string 2</state>
  </ModelStateMaster>
</ArrayOfModelStateMaster>