GET
api/v1/get-all-country-list
Request Information
None.
Response Information
Description:
Return type: Collection of Country
Response Formats
application/json, text/json
[
{
"CountryId": 1,
"CountryName": "sample string 2",
"CountryCode": "sample string 3",
"SortOrder": 1,
"PaymentCountryCode": "sample string 4",
"IsActive": true,
"ImagePath": "sample string 5",
"Alpha3_Code": "sample string 6"
},
{
"CountryId": 1,
"CountryName": "sample string 2",
"CountryCode": "sample string 3",
"SortOrder": 1,
"PaymentCountryCode": "sample string 4",
"IsActive": true,
"ImagePath": "sample string 5",
"Alpha3_Code": "sample string 6"
}
]
text/html
[{"CountryId":1,"CountryName":"sample string 2","CountryCode":"sample string 3","SortOrder":1,"PaymentCountryCode":"sample string 4","IsActive":true,"ImagePath":"sample string 5","Alpha3_Code":"sample string 6"},{"CountryId":1,"CountryName":"sample string 2","CountryCode":"sample string 3","SortOrder":1,"PaymentCountryCode":"sample string 4","IsActive":true,"ImagePath":"sample string 5","Alpha3_Code":"sample string 6"}]
application/xml, text/xml
<ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Master">
<Country>
<Alpha3_Code>sample string 6</Alpha3_Code>
<CountryCode>sample string 3</CountryCode>
<CountryId>1</CountryId>
<CountryName>sample string 2</CountryName>
<ImagePath>sample string 5</ImagePath>
<IsActive>true</IsActive>
<PaymentCountryCode>sample string 4</PaymentCountryCode>
<SortOrder>1</SortOrder>
</Country>
<Country>
<Alpha3_Code>sample string 6</Alpha3_Code>
<CountryCode>sample string 3</CountryCode>
<CountryId>1</CountryId>
<CountryName>sample string 2</CountryName>
<ImagePath>sample string 5</ImagePath>
<IsActive>true</IsActive>
<PaymentCountryCode>sample string 4</PaymentCountryCode>
<SortOrder>1</SortOrder>
</Country>
</ArrayOfCountry>
