GET api/translate?langid={langid}&_ScreenLabellist={_ScreenLabellist}

Documentation for 'Gettranslate'.

Request Information

Parameters

NameDescriptionAdditional information
langid
Documentation for 'langid'.

Define this parameter in the request URI.

_ScreenLabellist
Documentation for '_ScreenLabellist'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "langid": "sample string 1",
    "tagvalue": "sample string 2",
    "label": "sample string 3"
  },
  {
    "langid": "sample string 1",
    "tagvalue": "sample string 2",
    "label": "sample string 3"
  },
  {
    "langid": "sample string 1",
    "tagvalue": "sample string 2",
    "label": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfScreenLabel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JetService.Models">
  <ScreenLabel>
    <label>sample string 3</label>
    <langid>sample string 1</langid>
    <tagvalue>sample string 2</tagvalue>
  </ScreenLabel>
  <ScreenLabel>
    <label>sample string 3</label>
    <langid>sample string 1</langid>
    <tagvalue>sample string 2</tagvalue>
  </ScreenLabel>
  <ScreenLabel>
    <label>sample string 3</label>
    <langid>sample string 1</langid>
    <tagvalue>sample string 2</tagvalue>
  </ScreenLabel>
</ArrayOfScreenLabel>