POST api/LabelManagement/SaveTranslationLabel

Request Information

URI Parameters

None.

Body Parameters

LabelManagementVM
NameDescriptionTypeAdditional information
Id

integer

None.

ApplicationPageId

integer

None.

LabelName

string

None.

OldLabelValue

string

None.

LabelValue

string

None.

OtherLangLabelValue

string

None.

CreatedDateTime

date

None.

CreatedBy

string

None.

LastModifiedDateTime

date

None.

OtherLangLastModifiedDateTime

date

None.

ModifiedBy

string

None.

Active

boolean

None.

LanguageID

integer

None.

IsMultiple

boolean

None.

IsDynamic

boolean

None.

ModuleName

string

None.

MultipleModuleName

string

None.

EmailAddress

string

None.

Environment

string

None.

IsTranslated

boolean

None.

IsDownmerged

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ApplicationPageId": 2,
  "LabelName": "sample string 3",
  "OldLabelValue": "sample string 4",
  "LabelValue": "sample string 5",
  "OtherLangLabelValue": "sample string 6",
  "CreatedDateTime": "2024-06-28T09:55:25.2913274+00:00",
  "CreatedBy": "sample string 8",
  "LastModifiedDateTime": "2024-06-28T09:55:25.2913274+00:00",
  "OtherLangLastModifiedDateTime": "2024-06-28T09:55:25.2913274+00:00",
  "ModifiedBy": "sample string 11",
  "Active": true,
  "LanguageID": 12,
  "IsMultiple": true,
  "IsDynamic": true,
  "ModuleName": "sample string 15",
  "MultipleModuleName": "sample string 16",
  "EmailAddress": "sample string 17",
  "Environment": "sample string 18",
  "IsTranslated": true,
  "IsDownmerged": true
}

application/xml, text/xml

Sample:
<LabelManagementVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shell.LabelManagementService.Data.Model">
  <Active>true</Active>
  <ApplicationPageId>2</ApplicationPageId>
  <CreatedBy>sample string 8</CreatedBy>
  <CreatedDateTime>2024-06-28T09:55:25.2913274+00:00</CreatedDateTime>
  <EmailAddress>sample string 17</EmailAddress>
  <Environment>sample string 18</Environment>
  <Id>1</Id>
  <IsDownmerged>true</IsDownmerged>
  <IsDynamic>true</IsDynamic>
  <IsMultiple>true</IsMultiple>
  <IsTranslated>true</IsTranslated>
  <LabelName>sample string 3</LabelName>
  <LabelValue>sample string 5</LabelValue>
  <LanguageID>12</LanguageID>
  <LastModifiedDateTime>2024-06-28T09:55:25.2913274+00:00</LastModifiedDateTime>
  <ModifiedBy>sample string 11</ModifiedBy>
  <ModuleName>sample string 15</ModuleName>
  <MultipleModuleName>sample string 16</MultipleModuleName>
  <OldLabelValue>sample string 4</OldLabelValue>
  <OtherLangLabelValue>sample string 6</OtherLangLabelValue>
  <OtherLangLastModifiedDateTime>2024-06-28T09:55:25.2913274+00:00</OtherLangLastModifiedDateTime>
</LabelManagementVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>