Languages
Returns a collection of active languages for the application.
Url
GET
http://api.hr-technologies.com/v1/languages
Response
Key | Type(s) | Optional | Description |
---|---|---|---|
short | string |
ISO 639-1 representation of the application locale, primarily used for the Accept-Language header |
|
keyword | string |
Language keyword used for translations independent of the current locale |
Example
Url
http://api.hr-technologies.com/v1/languages
Response
{
"data": [
{
"short": "nl",
"keyword": "DUTCH"
},
{
"short": "fr",
"keyword": "FRENCH"
},
{
"short": "en",
"keyword": "ENGLISH"
},
{
"short": "de",
"keyword": "GERMAN"
}
]
}