API Guide > Convenience Methods (4 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
-
To create a new document, do a multipart/form-data POST with parameters: document[file_name] name of the file, to be used in download links document[description] description of the file document[attached_file] file ...
-
You can update your estimate, track hours worked, and add a comment with a single POST using the track_time method on tasks. The following request tracks four hours of ...
-
You can fetch a list of recent comments (matching those displayed on the web dashboard) using the comment_stream method on workspaces. The comments are returned as a list with the most ...
-
You can request a list of your timers in a given workspace: GET /api/workspaces/:workspace_id/timers and to access your timer for a particular task: GET ...


