Retrieves the language 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_language| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| code |
Code of the language, 2 letters, following ISO 639-1 |
string | |
| name |
Name of the language |
string | |
| is_default |
Is the default language to be used when nothing set |
boolean | |
| disabled |
Disable the language to not have it on the interface |
boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "eb7362ee-e4b8-4397-8013-d339904688d3",
"code": "sample string 2",
"name": "sample string 3",
"is_default": true,
"disabled": true
}