Retrieves all languages
Request Information
URI Parameters :
None.
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 | |
| 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": "349ddcdb-56f2-4d1c-860f-d1dddd39551f",
"code": "sample string 2",
"name": "sample string 3",
"is_default": true,
"disabled": true,
"resource_file_name": "sample string 6",
"modified_dateutc": "2026-01-11T20:57:52.0449207+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>349ddcdb-56f2-4d1c-860f-d1dddd39551f</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T20:57:52.044Z</modified_dateutc> <name>sample string 3</name> <resource_file_name>sample string 6</resource_file_name> </db_language>