Get All Overtime Tasks
| Function: | Retrieves all the overtime Job Tasks |
| Web service call: | https://proworkflow2.net/pwfaccountname/api/v2/tasks.cfm?customerkey=84DC6CF8-BF78-D79D-B25B-0C0D20229F17&api_call=overtimetasks&UserID=xxx |
| Method: | GET |
| URL Parameters: | UserID is not mandatory. If no id is provided then all tasks will be returned |
| Return Data: | XML data packet of AllOverTimeTasks is constructed by the web service and sent to the user. |
| Status messages: | OK or Error. |
Example of return data:
- <?xml version="1.0" encoding="UTF-8"?>
- <allovertimetasks>
- <status>OK</status>
- <taskcount>1</taskcount>
- <tasks>
- <task>
- <taskid>7911</taskid>
- <taskcatid>1</taskcatid>
- <jobid>37</jobid> (Empty for General tasks)
- <jobtitle>Sample Job</jobtitle> (Empty for General tasks)
- <jobnumber>BC001</jobnumber> (Empty for General tasks)
- <jobclient>1</jobclient> (Empty for General tasks)
- <tasktitle>Sample Task</tasktitle>
- <taskstatus>A</taskstatus>
- <taskpriority>3</taskpriority>
- <taskorder>1.1.1</taskorder>
- <tasktype>normal</tasktype>
- <taskdatestart>11-Feb-2009</taskdatestart>
- <taskdatedue>15-Feb-2009</taskdatedue>
- <taskcreatedby>5</taskcreatedby>
- <taskassignedto>x5x</taskassignedto>
- <taskcreatedby_name>Bob</taskcreatedby_name>
- <taskassignedto_names>Bob</taskassignedto_names>
- <tasktimeallocated>60</tasktimeallocated>
- <tasktotaltimespent>60</tasktotaltimespent>
- <taskactive>yes</taskactive>
- <taskdependent>no</taskdependent>
- </task>
- </tasks>
- </allovertimetasks>




