GET v1/country/detail/{countryID}
Retrieve detailed information about a specific Country by unique identifier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| countryID |
Unique identifier of a Country |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CountryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryID |
Unique identifier of a Country |
integer |
None. |
| CountryShortName |
Country abbreviation |
string |
None. |
| CountryLongName |
Full country name |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"countryID": 1,
"countryShortName": "sample string 2",
"countryLongName": "sample string 3"
}