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