UOM Literals Input Interface

This API is used to interface a UOM Literals in JSON format. The UOM Literals Input Interface allows you to create UOM literals for UOMs based on uom_code.

This API supports multiple languages (English, Chinese, Spanish, Portuguese, French, Korean, etc.).

URL

POST .../wms/lgfapi/v10/stage/uom_terminology/

Request Parameters

Parameter/Field Name Type Required Maximum Length Description
async_flg Boolean (True/False)

By default, the value will be considered as false.

If the value is true, then interface will run in async mode.

If the value is false, then interface will run synchronously.

uom_code String Yes 10 An existing UOM_CODE from UOM table.
lang_code String Yes 10

A valid lang_code.

For language codes, refer the following table.

translated_uom_code String Yes 10 Define the translated UOM code.
translated_uom_name String Yes 75 Define the translated UOM name.
Note: If a record for an existing translated_uom_code is interfaced again, the API permits updates to the record with the specified lang_code, translated_uom_code, and translated_uom_name.

Language Codes

Language Code Description
cs_CZ Czech
de_DE Deutsch
en_US English
es_CL Spanish
fi_FI Finnish
fr_CA Canadian French
fr_FR French
hr_HR Croatian
it_IT Italian
ja_JP Japanese
ko_KR Korean
nl_NL Dutch
no_NO Norwegian
pl_PL Polish
pt_BR Portugese
ro_RO Romanian
ru_RU Russian
sk_SK Slovak
sv_SE Swedish
th_TH Thai
tr_TR Turkish
uk_UA Ukrainian
zh_CN Chinese (Simplified)
zh_TW Chinese (Traditional)

Request Body

{
 "async_flg":false,
    "header": {
        "document_version":"26A",
        "origin_system":"ENV1",
        "client_env_code":"ENV1",
        "parent_company_code": "COMP01",
        "entity": "uom_terminology",
        "timestamp": "2025-11-01T12:12:12",
        "company_code": "COMP01",
        "messageid": "uom_terminology"
    },
    "stage_uom_terminology_list": [
        {
            "uom_code": "Pack",
            "lang_code":"fr_FR",
            "translated_uom_code": "Pares",
            "translated_uom_name": "Pares"
        }
    ]
}

Sample Response

{
    "success": true,
    "response": {
        "message": "1 records were processed and 0 records had errors."
    }
}