ForSURE.web.history

baseURL = '/history'

Base URL for all requests

POST {baseURL}/delete-report
async def delete_report_endpoint()

Delete the specified report.

Parameters
  • report_name: Name of the report
  • inprogress: Whether the report is still in progress or the timeframe is in the past.
Returns

{
    "message": "Report deleted successfully."
}

POST {baseURL}/delete-multiple-reports
async def delete_multiple_reports()

Delete the specified reports.

Parameters
  • report_names: List of names of reports.
  • inprogress: Whether the reports are still in progress or the timeframe is in the past.
Returns

{
   "message": "Reports deleted successfully."
}