POST global/PostNomenclature
Request Information
URI Parameters
None.
Body Parameters
NomenclatureInput| Name | Description | Type | Additional information |
|---|---|---|---|
| NomenclatureTypeCode | string |
None. |
|
| NomenclatureCode | string |
None. |
|
| NomenclatureGuid | globally unique identifier |
None. |
|
| Translations | Collection of TranslationInput |
None. |
Request Formats
application/json, text/json
Sample:
{
"NomenclatureTypeCode": "sample string 1",
"NomenclatureCode": "sample string 2",
"NomenclatureGuid": "0948b708-99ab-4bf8-a333-f27783bff9b2",
"Translations": [
{
"LanguageGuid": "31aea5c8-2e24-4ff9-b774-51e30f448099",
"LanguageCode": "sample string 2",
"TranslationGuid": "a790b310-ade9-4107-a437-2d6050e19bb4",
"TranslationValue": "sample string 3"
},
{
"LanguageGuid": "31aea5c8-2e24-4ff9-b774-51e30f448099",
"LanguageCode": "sample string 2",
"TranslationGuid": "a790b310-ade9-4107-a437-2d6050e19bb4",
"TranslationValue": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<NomenclatureInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestApi.Models.Inputs">
<NomenclatureCode>sample string 2</NomenclatureCode>
<NomenclatureGuid>0948b708-99ab-4bf8-a333-f27783bff9b2</NomenclatureGuid>
<NomenclatureTypeCode>sample string 1</NomenclatureTypeCode>
<Translations>
<TranslationInput>
<LanguageCode>sample string 2</LanguageCode>
<LanguageGuid>31aea5c8-2e24-4ff9-b774-51e30f448099</LanguageGuid>
<TranslationGuid>a790b310-ade9-4107-a437-2d6050e19bb4</TranslationGuid>
<TranslationValue>sample string 3</TranslationValue>
</TranslationInput>
<TranslationInput>
<LanguageCode>sample string 2</LanguageCode>
<LanguageGuid>31aea5c8-2e24-4ff9-b774-51e30f448099</LanguageGuid>
<TranslationGuid>a790b310-ade9-4107-a437-2d6050e19bb4</TranslationGuid>
<TranslationValue>sample string 3</TranslationValue>
</TranslationInput>
</Translations>
</NomenclatureInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |