API Guide > Convenience Methods > Workspace Comment Stream
|
|
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
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 recent first, and the item commented upon is embedded in the comment as a hash value for the treeitem attribute.
To get (up to) 100 comments within the previous week, do:
% curl https://app.liquidplanner.com/api/workspaces/:id/comment_stream
Optional parameters include:
- for_me
- if true then only return comments directed at you or on owned or watched items, default false
- ignore_mine
- exclude comments made by you, default true
- start_date
- start of recent period, default 7 days before the end_date
- end_date
- end of recent period, default now
- limit
- max number of comments to return, default 100


