GET api/GetAllprocedureList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
procedureListName | Description | Type | Additional information |
---|---|---|---|
Count | string |
None. |
|
ProcList | Collection of procedures |
None. |
Response Formats
application/json, text/json
Sample:
{ "Count": "sample string 1", "ProcList": [ { "procedureName": "sample string 1" }, { "procedureName": "sample string 1" } ] }
text/html
Sample:
{"Count":"sample string 1","ProcList":[{"procedureName":"sample string 1"},{"procedureName":"sample string 1"}]}
application/xml, text/xml
Sample:
<procedureList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models"> <Count>sample string 1</Count> <ProcList> <procedures> <procedureName>sample string 1</procedureName> </procedures> <procedures> <procedureName>sample string 1</procedureName> </procedures> </ProcList> </procedureList>
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Count" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ProcList[0].procedureName" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ProcList[1].procedureName" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e--