Get User Tasks - API home
Description - Use this method to retrieve a users task. You can choose to retrieve only specific tasks, like only completed tasks, or only stickied tasks.
Arguments -
- username - the username you want to use.
- password - the password of the user (encoded).
- type - the type of tasks you want to retrieve. Can be either "all", "pending", "completed", "stickied".
Example Call -
http://requests.wipeelist.com/v1/usertodos/?username=Joey&password=PASSWORD&type=all
Example Response -
<response>
<status>Success</status>
<statuscode>200</statuscode>
<statusmessage>N/A</statusmessage>
<results>7</results>
<task>
<id>157</id>
<title>Finish off the API</title>
<notes>This is the note attached to the task.</notes>
<tags></tags>
<completed>false</completed>
<stickied>false</stickied>
</task>
</response>
