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": "241a6742-a7d1-4628-85a7-16b0654758d1",
  "code": "sample string 2",
  "name": "sample string 3",
  "is_default": true,
  "disabled": true
}