Retrieves the country with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
db_country| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| code |
Code in 2 letters, following ISO 3166 |
string | |
| country_name |
Name of the country |
string | |
| is_default | boolean | ||
| default_db_language_id | globally unique identifier | ||
| disabled | boolean | ||
| default_language | db_language |
Response Formats
application/json, text/json
Sample:
{
"id": "2e9d3402-bf08-4c94-b8e4-d0ed01b4c0b7",
"code": "sample string 2",
"country_name": "sample string 3",
"is_default": true,
"default_db_language_id": "27a440b2-3d87-4c7b-9dfa-e6bdae233c00",
"disabled": true,
"default_language": {
"id": "c9cbf1b3-4a99-4f2c-ad6f-bc89c53d5858",
"code": "sample string 2",
"name": "sample string 3",
"is_default": true,
"disabled": true
}
}