GET api/Text?languageNo={languageNo}&textType={textType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
languageNo

integer

None.

textType

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Text
NameDescriptionTypeAdditional information
languageNo

integer

None.

textType

integer

None.

textNo

integer

None.

text

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "languageNo": 1,
    "textType": 2,
    "textNo": 3,
    "text": "sample string 4"
  },
  {
    "languageNo": 1,
    "textType": 2,
    "textNo": 3,
    "text": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfText xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Text>
    <languageNo>1</languageNo>
    <textType>2</textType>
    <textNo>3</textNo>
    <text>sample string 4</text>
  </Text>
  <Text>
    <languageNo>1</languageNo>
    <textType>2</textType>
    <textNo>3</textNo>
    <text>sample string 4</text>
  </Text>
</ArrayOfText>