Translation_Get (Get)
- Last UpdatedNov 06, 2025
- 1 minute read
| Get | Translation_Get |
Resource Path:/api/translation/{langId}
Get an array of one or more translated language strings based on a language identifier and a set of string identifiers.
| Name | Description | Data Type |
|---|---|---|
| sid | Required. An array of string IDs. At least one string ID must be passed. | Array[integer] |
| langId | The IDs for the default languages cannot be modified. They are: English: 1 Chinese Simplified: 1000 French: 1001 German: 1002 Japanese: 1003 Russian: 1004 Spanish: 1005 | integer |
The response body is of type Array[Mes.WebApi.Models.Translation].
To get the strings 285 and 286 for the language with the ID 1:
api/translation?sid=285&sid=286&langId=1
Examples: Work Tasks Lookups
To get two separate strings for a language:
api/translation?sid={sid1}&sid={sid2}&langId={langID}