List all projects in the Project node.
HTTP Method: GET
XML URL: http://localhost/WaWebService/ProjectList
JSON URL: http://localhost/WaWebService/Json/ProjectList
XML Response:
<ProjectList> <Result> <Ret>0</Ret> <Total>2</Total> </Result> <Projects> <Project> <ID>3</ID> <Name>Express</Name> <Description>Express Project</Description> </Project> <Project> <ID>2</ID> <Name>WaScada</Name> <Description>WaScada Project</Description> </Project> </Projects> </ProjectList>
JSON Response:
{ "Result":{ "Ret":0, "Total":2 }, "Projects":[{ "ID":3, "Name":"Express", "Description":"Express Project" }, { "ID":2, "Name":"WaScada", "Description":"WaScada Project" }] }
Response Field:
Field Name |
Description |
ID |
Project ID |
Name |
Project Name |
Description |
Project Description |