GET
api/v1/get-countryByCountryCode?countryCode={countryCode}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
countryCode | string |
Required |
Response Information
Description:
Return type: 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" }
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"}
application/xml, text/xml
<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>