API Guide > Getting Started > Mark a Task Done
|
|
Developer Forum - Ask the LiquidPlanner development team questions. Note that the LP iPhone app uses this same API. |
|
API Sample Code – See the API in action then give it a try. |
Enter a search term or try the Dev Forums for more answers.
LiquidPlanner uses a RESTful web service API. You can download the API Guide (PDF) for offline reference. Most actions that you can perform within the application can be automated using the API -- for example, you can create a task, comment on the task, track time against it, and then mark it done.
NEED HELP? Please post API questions in the API forums
To update a task, use the PUT HTTP method and specify the task ID.
You have now learned the fundamentals of the LiquidPlanner API, so mark the task done:
% curl https://app.liquidplanner.com/api/workspaces/:id/tasks/:id \
-X PUT -d '{"task": {"is_done": "true"}}'
{
"name": "learn the API",
"id": 79104,
"is_done": true,
...
}
Status: 200


