GET api/FormWiseControlType
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
FormWiseControlTypeResult| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
|
| formWiseControlTypes | Collection of FormWiseControlType |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"formWiseControlTypes": [
{
"MID": 1,
"CONTROL_TYPES": "sample string 2"
},
{
"MID": 1,
"CONTROL_TYPES": "sample string 2"
}
]
}
text/html
Sample:
{"status":"sample string 1","message":"sample string 2","formWiseControlTypes":[{"MID":1,"CONTROL_TYPES":"sample string 2"},{"MID":1,"CONTROL_TYPES":"sample string 2"}]}
application/xml, text/xml
Sample:
<FormWiseControlTypeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.Documentation">
<formWiseControlTypes>
<FormWiseControlType>
<CONTROL_TYPES>sample string 2</CONTROL_TYPES>
<MID>1</MID>
</FormWiseControlType>
<FormWiseControlType>
<CONTROL_TYPES>sample string 2</CONTROL_TYPES>
<MID>1</MID>
</FormWiseControlType>
</formWiseControlTypes>
<message>sample string 2</message>
<status>sample string 1</status>
</FormWiseControlTypeResult>
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="formWiseControlTypes[0].MID" 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="formWiseControlTypes[0].CONTROL_TYPES" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="formWiseControlTypes[1].MID" 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="formWiseControlTypes[1].CONTROL_TYPES" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e--