GET api/v1/get-countrycode?countryId={countryId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
countryId

integer

Required

Response Information

Description:

Return type: Country

Response Formats
{
  "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"}
<Country xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Master">
  <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>