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": "96d5ef73-ad5d-4ece-9a36-78d8f14535be",
"Translations": [
{
"LanguageGuid": "51314ea3-6dd9-460e-b288-16a8921a61ee",
"LanguageCode": "sample string 2",
"TranslationGuid": "58ed68e2-eafc-4d90-9eb4-72a216cfcdbb",
"TranslationValue": "sample string 3"
},
{
"LanguageGuid": "51314ea3-6dd9-460e-b288-16a8921a61ee",
"LanguageCode": "sample string 2",
"TranslationGuid": "58ed68e2-eafc-4d90-9eb4-72a216cfcdbb",
"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>96d5ef73-ad5d-4ece-9a36-78d8f14535be</NomenclatureGuid>
<NomenclatureTypeCode>sample string 1</NomenclatureTypeCode>
<Translations>
<TranslationInput>
<LanguageCode>sample string 2</LanguageCode>
<LanguageGuid>51314ea3-6dd9-460e-b288-16a8921a61ee</LanguageGuid>
<TranslationGuid>58ed68e2-eafc-4d90-9eb4-72a216cfcdbb</TranslationGuid>
<TranslationValue>sample string 3</TranslationValue>
</TranslationInput>
<TranslationInput>
<LanguageCode>sample string 2</LanguageCode>
<LanguageGuid>51314ea3-6dd9-460e-b288-16a8921a61ee</LanguageGuid>
<TranslationGuid>58ed68e2-eafc-4d90-9eb4-72a216cfcdbb</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. |