Analytics Reports (LP Classic)
This documentation is for LiquidPlanner Classic: app.liquidplanner.com
You can request the same information as you are able see on the Analytics tab in your Classic workspace.
List reports
To fetch the id
, name
and report_type
for all existing Analytics reports in the workspace:
% curl https://app.liquidplanner.com/api/v1/workspaces/:id/reports
Show a single report
To get the same information for a single report:
% curl https://app.liquidplanner.com/api/v1/workspaces/:id/reports/:id
Run a report and get its content
To run a specific report and get its content:
% curl https://app.liquidplanner.com/api/v1/workspaces/:id/reports/:id/data
Optional Parameters
Parameter | Value |
---|---|
start_date | YYYY-MM-DD formatted dates to override the report’s Date filter; both must be included, if used |
end_date | YYYY-MM-DD formatted dates to override the report’s Date filter; both must be included, if used |
Example:
% curl https://app.liquidplanner.com/api/v1/workspaces/:id/reports/:id/data?start_date=2017-01-01&end_date=2017-01-31
Updated over 2 years ago