Tags (LP Classic)

This documentation is for LiquidPlanner Classic: app.liquidplanner.com

Listing All Tag Names

You can fetch a list of all tag names using the tags method on workspaces. Tags are sorted based on how many times they are used within the workspace.

% curl https://app.liquidplanner.com/api/v1/workspaces/:id/tags

Adding and Removing Tags from Treeitems

You can add a tag to a generic treeitem or a specific type of items by using a POST like this: /api/workspaces/:id/tasks/:id/tags with JSON like ' { "tag" : { "text" : "tag name" } } ' .

Remove a tag from treeitem with a DELETE request.