Route getLanguages

This route returns all languages available to the autheticated user. The properties are the ISO 2-letter code and the content is the name of the Language in the locale.

The returned data has the following schema:

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "additionalProperties": false,
    "patternProperties": {
        "^[a-z]{2}$": {
            "type": "string"
        }
    }
}