GET api/CustomerDetail/GetCountries
No documentation available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"country": [
{
"country_cd": "sample string 1",
"name": "sample string 2",
"dispOrder": 3
},
{
"country_cd": "sample string 1",
"name": "sample string 2",
"dispOrder": 3
},
{
"country_cd": "sample string 1",
"name": "sample string 2",
"dispOrder": 3
}
]
}
text/xml
Sample:
<CountryDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EPDS.Model.Customer">
<country>
<Country>
<country_cd>sample string 1</country_cd>
<dispOrder>3</dispOrder>
<name>sample string 2</name>
</Country>
<Country>
<country_cd>sample string 1</country_cd>
<dispOrder>3</dispOrder>
<name>sample string 2</name>
</Country>
<Country>
<country_cd>sample string 1</country_cd>
<dispOrder>3</dispOrder>
<name>sample string 2</name>
</Country>
</country>
</CountryDetails>