Clio Report Presets API
Report Presets can be created to streamline report generation workflow by saving report option parameters as a Preset. [Support Link](https://help.clio.com/hc/en-us/articles/9290078155803-Generate-Reports-Presets-and-History#reports-presets-0-2) ## Creating a Report Preset ### Options When creating a Report Preset, the options sent in the request body is dependent on the report kind. Check out the sample request to create a Report Preset for the Billing History web report for the current year and grouped by client. ``` Request POST /api/v4/report_presets.json { data: { name: "Current Yr Billing", kind: "billing_history", options: { date_range: "year", format: "html", group_by: "client", start_date: null, end_date: null, kind: "billing_history" }, format: "html" } } ```