GET api/SuntechTableFieldList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

SuntechTableListResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

suntechTableList

Collection of SuntechTableList

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "suntechTableList": [
    {
      "TABLE_NAME": "sample string 1"
    },
    {
      "TABLE_NAME": "sample string 1"
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","suntechTableList":[{"TABLE_NAME":"sample string 1"},{"TABLE_NAME":"sample string 1"}]}

application/xml, text/xml

Sample:
<SuntechTableListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.SuntechInternal">
  <message>sample string 2</message>
  <status>sample string 1</status>
  <suntechTableList>
    <SuntechTableList>
      <TABLE_NAME>sample string 1</TABLE_NAME>
    </SuntechTableList>
    <SuntechTableList>
      <TABLE_NAME>sample string 1</TABLE_NAME>
    </SuntechTableList>
  </suntechTableList>
</SuntechTableListResult>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="status"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="message"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="suntechTableList[0].TABLE_NAME"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="suntechTableList[1].TABLE_NAME"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e--