LiquidPlanner Classic Forum
Is there a way to make an API Token Read-Only?
Hello,
Adding comments to task with API
I try follow the documentation with: (sanitised)
curl -H "Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxx" https://app.liquidplanner.com/api/v1/workspaces/xxxxxx/tasks/xxxxxxxx/comments '{"comment":{"comment":"Written through API outside of LP - Hope your code is going well"}}' -X POST
Developer Docs missing information
Hello, what happened to the developer docs?
Previously we were able to view url and body params in the docs (https://web.archive.org/web/20200813181052/https://developer.liquidplanner.com/reference), however the endpoint reference doesn't appear to include meaningful information anymore. Is there anywhere else the available parameters for each endpoint are included?
Unexpected results with events filter
I am trying to get only events scheduled for after Jan 01, 2022. When I send "https://app.liquidplanner.com/api/v1/workspaces/[my workspace id]/events?filter=earliest_start%20before%202022-01-01" it returns events scheduled after today instead. When I try the same filter, but using "before" instead of after, it returns no events. Is there a different command needed to access past events?
Is it possible to create a sub-folder at a certain position through the API?
I am able to create a folder by calling https://app.liquidplanner.com/api/v1/workspaces/:id/folders, but the folder is put at the bottom of the list.
I am also able to change its position by calling https://app.liquidplanner.com/api/v1/workspaces/:id/folders/:id/move_after, but this basically means two separate api calls.
filter timesheet entries by project tag
I am wondering if you can filter timesheet entry by tag or by if it does not have a tag. Tried these but they don't seem to be working for me:
How to use LP API in JavaScript?
Hi,
I am trying to run this JS code from the doc:
https://developer.liquidplanner.com/reference#get_account
How to move a task from one package to another?
Hello,
I came across this doc:
https://developer.liquidplanner.com/docs/create-and-update-examples
Add comment to task
I wish to add a comment to a task with the API