Retrieves the language with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

db_language
NameDescriptionTypeAdditional 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
resource_file_name

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "b917a910-e369-4b9d-8a62-2025b877f166",
  "code": "sample string 2",
  "name": "sample string 3",
  "is_default": true,
  "disabled": true,
  "resource_file_name": "sample string 6",
  "modified_dateutc": "2026-01-11T23:42:06.1164158+00:00"
}

application/xml, text/xml

Sample:
<db_language xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 2</code>
  <disabled>true</disabled>
  <id>b917a910-e369-4b9d-8a62-2025b877f166</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T23:42:06.116Z</modified_dateutc>
  <name>sample string 3</name>
  <resource_file_name>sample string 6</resource_file_name>
</db_language>