Configuration_GetFieldDisplayNames (Get)
- Last UpdatedNov 13, 2025
- 1 minute read
| Get | Configuration_GetFieldDisplayNames |
Resource Path:/api/v1/config/GetFieldDisplayNames
| Name | Description | Data Type |
|---|---|---|
| location | The reporting point location where the display names are to be fetched. | string |
| fields | Required. The fields to be fetched as array of string. | string |
| language | Required. The language that corresponds to the display names such as ru-ru, pt-br, zh-chs, and so on. | string |
The response body is of type object.
[GetFieldDisplayNamesRequest]Request
GET 'https://localhost:9003/api/v1/config/GetFieldDisplayNames?Location=ACME.Rocky%20Mine.Train%20Loadout.Downtime&Fields=IsManual,%20StartDateTime,%20Classification,%20Cause,%20Effect&Language=zh-chs'Response
{
"IsManual": "用手动",
"StartDateTime": "开始时间",
"Classification": "分类",
"Cause": "原因",
"Effect": "结果"
}Request | Inventory Configuration
GET 'https://localhost:9003/api/v1/config/GetFieldDisplayNames?Location=System%20Configuration.Inventory&Fields=SourceEquipment&Language=ru'Response
{
"SourceEquipment": "Исходное оборудование"
}