getLanguageTexts
Retrieve translations of texts in specified languages to support multi-language needs across the Mews hospitality platform. Input language codes and scope to fetch relevant text data.
Instructions
Returns translations of texts in the specified languages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
LanguageCodes | Yes | Array of language codes to get translations for | |
Scope | No | Scope of texts to retrieve |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"LanguageCodes": {
"description": "Array of language codes to get translations for",
"items": {
"type": "string"
},
"type": "array"
},
"Scope": {
"description": "Scope of texts to retrieve",
"type": "string"
}
},
"required": [
"LanguageCodes"
],
"type": "object"
}