API Guide > Getting Started (6 entries)
|
|
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
-
We recommend that you create a new LiquidPlanner workspace for your initial API experimentation and testing. This way you won’t disturb your production data (or other users of your production workspace), ...
-
Let’s start with a simple “Hello, World!” request that fetches your LiquidPlanner account details. Throughout this document, we’ll provide examples using curl . We use curl because it is ...
-
The contents of a workspace are organized in a tree. Every workspace has a root. The root may be empty (in which case you have a empty workspace), or it may ...
-
To create a task, you: POST to the /tasks resource of the workspace With a parameter named “task” whose value is a hash ...
-
To create a comment, you: POST to the …/comments resource of an item With a parameter named “comment” whose value is a hash ...
-
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: ...


