GET api/MarkDownLabelTexts?dx={dx}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dx

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MarkDownLabelTexts
NameDescriptionTypeAdditional information
usKey

integer

None.

usFontSize

string

None.

strTxFormat

string

None.

strText

string

None.

Response Formats

application/xml, text/xml

Sample:
<ArrayOfMarkDownLabelTexts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MPUAPI">
  <MarkDownLabelTexts>
    <strText>sample string 4</strText>
    <strTxFormat>sample string 3</strTxFormat>
    <usFontSize>sample string 2</usFontSize>
    <usKey>1</usKey>
  </MarkDownLabelTexts>
  <MarkDownLabelTexts>
    <strText>sample string 4</strText>
    <strTxFormat>sample string 3</strTxFormat>
    <usFontSize>sample string 2</usFontSize>
    <usKey>1</usKey>
  </MarkDownLabelTexts>
</ArrayOfMarkDownLabelTexts>

application/json, text/json

Sample:
[
  {
    "usKey": 1,
    "usFontSize": "sample string 2",
    "strTxFormat": "sample string 3",
    "strText": "sample string 4"
  },
  {
    "usKey": 1,
    "usFontSize": "sample string 2",
    "strTxFormat": "sample string 3",
    "strText": "sample string 4"
  }
]