GET /api/.../sysadmin/languagestrings/merged/{orgid}
This method retrieves all language string values for a specific product based on the specified organization ID.
Custom values will be merged into the result set overlaying default string values. The product ID and language used to retrieve the language string values are provided in the root URL.
Name | Type | Required | Description |
---|---|---|---|
orgid | Integer | Yes | Organization ID used to determine list of language strings. |
Property | Type | Nullable | Description |
---|---|---|---|
LanguageID | Int | No | System administration ID of language. Determined by string language that is part of the request URL. |
Mnemonic | String | No | Language string mnemonic. |
OrganizationID | Int | No | Organization ID. |
ProductID | Int | No | Product ID. Determined by product ID that is part of the request URL. |
Value | String | No | Value of language string. |
LanguageID | ISO 639-2 Language Code | Language |
---|---|---|
1031 | ger | German |
1033 | eng | English |
1042 | kor | Korean |
1043 | dut | Dutch |
1049 | rus | Russian |
1065 | per | Persian |
1066 | vie | Vietnamese |
1141 | haw | Hawaiian |
2052 | chi | Chinese |
3082 | spa | Spanish |
3084 | fre | French |
12289 | ara | Arabic |
15372 | hat | Haitian Creole |
[
{
"ProductID":20,
"LanguageID":1033,
"OrganizationID":0,
"Mnemonic":"SW_CI_CHCKOUTIND_AUTH",
"Value":"AUTHOR"
},
{
"ProductID":20,
"LanguageID":1033,
"OrganizationID":0,
"Mnemonic":"SW_CI_CHCKOUTIND_BRCD",
"Value":"BARCODE"
}
]
Code | Description |
---|---|
200 | OK. Success |
400 |
FAILURE.
|
404 |
FAILURE.
|
GET /api/.../sysadmin/languagestrings/merged/{orgid}?simplejson
This method retrieves all language string values for a specific product based on the specified organization ID.
The returned data will be a simple JSON object containing mnemonics as property names and the string as the property value.
Custom values will be merged into the result set overlaying default string values. The product ID and language used to retrieve the language string values are provided in the root URL.
Name | Type | Required | Description |
---|---|---|---|
orgid | Integer | Yes | Organization ID used to determine list of language strings. |
{
"SW_CI_CHCKOUTIND_AUTH":"AUTHOR",
"SW_CI_CHCKOUTIND_BRCD":"BARCODE",
"SW_CI_CHCKOUTIND_BRNCH":"BRANCH",
"SW_CI_CHCKOUTIND_CHCKOUT":"Checkout",
"SW_CI_CHCKOUTIND_CHCKOUTITM":"Checkout an item:",
"SW_CI_CHCKOUTIND_CLLNO":"CALL NO."
}
Code | Description |
---|---|
200 | OK. Success |
400 |
FAILURE.
|
404 |
FAILURE.
|
GET /api/.../sysadmin/languagestrings/merged/{orgid}/{mnemonic}
This method retrieves a specific language string value for a product based on the specified organization ID and mnemonic.
If a custom value exists, it will be returned instead of the default string value. The product ID and language used to retrieve the language string value are provided in the root URL.
Name | Type | Required | Description |
---|---|---|---|
orgid | Integer | Yes | Organization ID. |
mnemonic | String | Yes | Mnemonic value of string to retrieve. |
"AUTHOR"
Code | Description |
---|---|
200 | OK. Success |
400 |
FAILURE.
|
404 |
FAILURE.
|