GET api/LabelManagement/GetNonMigratedLabels

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TranslationLabelVM
NameDescriptionTypeAdditional information
LabelName

string

None.

LabelValue

string

None.

LanguageID

integer

None.

ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LabelName": "sample string 1",
    "LabelValue": "sample string 2",
    "LanguageID": 3,
    "ID": 4
  },
  {
    "LabelName": "sample string 1",
    "LabelValue": "sample string 2",
    "LanguageID": 3,
    "ID": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfTranslationLabelVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shell.LabelManagementService.Data.Model">
  <TranslationLabelVM>
    <ID>4</ID>
    <LabelName>sample string 1</LabelName>
    <LabelValue>sample string 2</LabelValue>
    <LanguageID>3</LanguageID>
  </TranslationLabelVM>
  <TranslationLabelVM>
    <ID>4</ID>
    <LabelName>sample string 1</LabelName>
    <LabelValue>sample string 2</LabelValue>
    <LanguageID>3</LanguageID>
  </TranslationLabelVM>
</ArrayOfTranslationLabelVM>