GET api/SupportEmployee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

SupportEmployeeResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

supportEmployee

Collection of SupportEmployee

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "supportEmployee": [
    {
      "EMPMST_NAME": "sample string 1"
    },
    {
      "EMPMST_NAME": "sample string 1"
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","supportEmployee":[{"EMPMST_NAME":"sample string 1"},{"EMPMST_NAME":"sample string 1"}]}

application/xml, text/xml

Sample:
<SupportEmployeeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.CustomerSupport">
  <message>sample string 2</message>
  <status>sample string 1</status>
  <supportEmployee>
    <SupportEmployee>
      <EMPMST_NAME>sample string 1</EMPMST_NAME>
    </SupportEmployee>
    <SupportEmployee>
      <EMPMST_NAME>sample string 1</EMPMST_NAME>
    </SupportEmployee>
  </supportEmployee>
</SupportEmployeeResult>

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="supportEmployee[0].EMPMST_NAME"

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

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e--