--- title: "Delete scheduled report" source_url: https://dev.digicert.com/certcentral-apis/report-library-api/delete-scheduled-report.html api_method: DELETE api_endpoint: "/reports/v1/report/scheduled/{{report_identifier}}" api_url: "https://api.digicert.com/reports/v1/report/scheduled/{{report_identifier}}" --- **DELETE** `https://api.digicert.com/reports/v1/report/scheduled/{{report_identifier}}` Use this endpoint to delete a scheduled report. The report must have a `status` of `SCHEDULED`. This endpoint only deletes the scheduled report, suspending future report runs. Completed report runs (`status` = `READY`) with the same `report_identifier` remain available for download after you delete the scheduled report. > **Tip** > > To resume report runs after deleting a scheduled report, use the [Edit report](https://dev.digicert.com/md/certcentral-apis/report-library-api/edit-report.md) endpoint. > > - In the URL path, for the `report_identifier` parameter, provide the report ID of the report you want to resume. > - In the JSON request body, provide the same values for any fields you want to keep the same when report runs resume. To get current values for these fields, use the [Report details](https://dev.digicert.com/md/certcentral-apis/report-library-api/report-details.md) endpoint. ## Example requests and responses ## cURL ``` curl --request DELETE 'https://api.digicert.com/reports/v1/report/scheduled/{{report_identifier}}' \ --header 'X-DC-DEVKEY: {{api_key}}' \ --header 'Content-Type: application/json' ``` ## 200 OK ```json { "message": "Successfully marked scheduled report/report template for deletion" } ``` ## Path parameters
Name Req/Opt Type Description
report_identifier required string Report ID of report to delete. Must have a status of SCHEDULED.
## Response parameters
Name Type Description
message string Deletion message.