API Guide > Technical Reference > Including Associated Records
|
|
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
Specify an ‘include’ parameter with a comma separated list of things to include. Valid things to include are:
- activities
- comments
- dependencies
- dependents
- documents
- estimates
- links
- note
- snapshots
- timer
For example, getting a specific task with its comment, documents, links, and note (roughly the information needed for the “Collaborate” page):
% curl https://app.liquidplanner.com/api/workspaces/:id/tasks/:id?include=comments,documents,links,note


