GET Master/Country?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+CountryList| Name | Description | Type | Additional information |
|---|---|---|---|
| Country | Collection of MYCII_EWS.BusinessObjects.Masters+Country |
None. |
|
| TotalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Country": [
{
"CountryId": "sample string 1",
"CountryName": "sample string 2",
"ISDCode": "sample string 3"
},
{
"CountryId": "sample string 1",
"CountryName": "sample string 2",
"ISDCode": "sample string 3"
}
],
"TotalCount": 1
}
application/xml, text/xml
Sample:
<CountryList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Country>
<Country>
<CountryId>sample string 1</CountryId>
<CountryName>sample string 2</CountryName>
<ISDCode>sample string 3</ISDCode>
</Country>
<Country>
<CountryId>sample string 1</CountryId>
<CountryName>sample string 2</CountryName>
<ISDCode>sample string 3</ISDCode>
</Country>
</Country>
<TotalCount>1</TotalCount>
</CountryList>