List languages
Returns a list of available languages.
Language name
Language name. Search for results that contain the specified characters in this parameter.
Language symbol
Sorting options
Determines the detail level of the response body.
List of languages retrieved successfully.
Language unique identifier
Display name of the language
Short symbol code identifying the language
IETF BCP 47 language tag used for locale identification, e.g. en-US
HATEOAS links associated with the entity
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/languages" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
url = "https://{instance}.kiteworks.com/rest/languages"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())Get a language
Returns the details of a specified language, including its name and symbol.
ID of the language to be retrieved
Language details retrieved successfully.
Language unique identifier
Display name of the language
Short symbol code identifying the language
IETF BCP 47 language tag used for locale identification, e.g. en-US
HATEOAS links associated with the entity
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/languages/:id" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
id = "VALUE" # ID of the language to be retrieved
url = f"https://{{instance}}.kiteworks.com/rest/languages/{id}"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())