GET Master/State?CountryName={CountryName}&CountryId={CountryId}&StateName={StateName}&StateId={StateId}&CityName={CityName}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| CountryName | string | 
                             None.  | 
                |
| CountryId | string | 
                             None.  | 
                |
| StateName | string | 
                             None.  | 
                |
| StateId | string | 
                             None.  | 
                |
| CityName | string | 
                             None.  | 
                
Body Parameters
None.
Response Information
Resource Description
MYCII_EWS.BusinessObjects.Masters+StateList| Name | Description | Type | Additional information | 
|---|---|---|---|
| State | Collection of MYCII_EWS.BusinessObjects.Masters+State | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "State": [
    {
      "StateId": "sample string 1",
      "StateName": "sample string 2"
    },
    {
      "StateId": "sample string 1",
      "StateName": "sample string 2"
    }
  ]
}
        application/xml, text/xml
            Sample:
<StateList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <State>
    <State>
      <StateId>sample string 1</StateId>
      <StateName>sample string 2</StateName>
    </State>
    <State>
      <StateId>sample string 1</StateId>
      <StateName>sample string 2</StateName>
    </State>
  </State>
</StateList>