Sign-in

LiquidPlanner
30-day free trial
30-second sign-up

API Guide > Technical Reference > Ordering and Limiting of Results

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


Order Param

You can request that a list of tasks be returned in a particular order.

Specify an order parameter whose value is one of the following:

earliest_start
default, returns the items with the earliest earliest_start first
updated_at
returns the most recently updated_at items first

Invalid values return an error response.

Limit Param

You can request that no more than a certain number of tasks be returned.

Specify a limit parameter whose value is an integer greater than zero.

Invalid values return an error response.