GET api/LedReadFormFmt/GetFmtData

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
ParamModal
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "Form_id": "sample string 1",
  "FormTitle": "sample string 2",
  "RowHeight": 3,
  "FontSize": 4,
  "LoopTime": 5,
  "Rows": [
    {
      "width": 1,
      "name": "sample string 2",
      "title": "sample string 3"
    },
    {
      "width": 1,
      "name": "sample string 2",
      "title": "sample string 3"
    },
    {
      "width": 1,
      "name": "sample string 2",
      "title": "sample string 3"
    }
  ],
  "errorCode": 6,
  "errorMsg": "sample string 7",
  "ErrorMsg": "sample string 8",
  "ErrorCode": 9
}

application/xml, text/xml

Sample:
<LedFormFmtModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <ErrorCode xmlns="http://schemas.datacontract.org/2004/07/WfSoft.Core">9</ErrorCode>
  <ErrorMsg xmlns="http://schemas.datacontract.org/2004/07/WfSoft.Core">sample string 8</ErrorMsg>
  <errorCode xmlns="http://schemas.datacontract.org/2004/07/WfSoft.Core">6</errorCode>
  <errorMsg xmlns="http://schemas.datacontract.org/2004/07/WfSoft.Core">sample string 7</errorMsg>
  <FontSize>4</FontSize>
  <FormTitle>sample string 2</FormTitle>
  <Form_id>sample string 1</Form_id>
  <LoopTime>5</LoopTime>
  <RowHeight>3</RowHeight>
  <Rows>
    <LedFormFmtColumnModal>
      <name>sample string 2</name>
      <title>sample string 3</title>
      <width>1</width>
    </LedFormFmtColumnModal>
    <LedFormFmtColumnModal>
      <name>sample string 2</name>
      <title>sample string 3</title>
      <width>1</width>
    </LedFormFmtColumnModal>
    <LedFormFmtColumnModal>
      <name>sample string 2</name>
      <title>sample string 3</title>
      <width>1</width>
    </LedFormFmtColumnModal>
  </Rows>
</LedFormFmtModal>