Service
https://api.timewax.com/project/list/
Goal
Getting a list with all projects.
Request
The following xml structure must be provided:
<request>
<token></token>
<isParent></isParent>
<isActive></isActive>
<portfolio></portfolio>
</request>
Parameter | Description | Required |
---|---|---|
token | Token for this request | yes |
isParent | Yes or No. Selects only project which are in use as a Parent project. | no |
isActive | Yes or No. Selects only project which are marked as active. | no |
portfolio | Code or name. Selects only projects from a specific portfolio | no |
The following xml structure is received after an successful execution:
<response>
<valid>yes</valid> <project>
<code></code>
<name></name>
<shortName></shortName>
</project>
</response>
Parameter | Description |
---|---|
valid | Indication that service was not executed successfully |
project/code | Project code |
project/name | Project name |
project/shortName | Project short name |
The following xml structure is received after an incorrect execution:
<response>
<valid>no</valid>
<errors>no</errors>
</response>
Parameter | Description |
---|---|
valid | Indication that service was not executed successfully |
error | Reason why the service has executed unsuccessfully |
Comments