---
title: "Delete report"
source_url: https://dev.digicert.com/certcentral-apis/report-library-api/delete-report.html
api_method: DELETE
api_endpoint: "/reports/v1/report/{{report_identifier}}"
api_url: "https://api.digicert.com/reports/v1/report/{{report_identifier}}"
---
**DELETE** `https://api.digicert.com/reports/v1/report/{{report_identifier}}`
Use this endpoint to permanently delete a report and all associated report run data.
After deleting a report, you can no longer:
- View the report details.
- View information about any associated report run.
- Download results of any associated report run.
To delete an individual report run without deleting the report, use the [Delete report run](https://dev.digicert.com/md/certcentral-apis/report-library-api/delete-report-run.md) endpoint.
## Example requests and responses
## cURL
```
curl --request DELETE 'https://api.digicert.com/reports/v1/report/{{report_identifier}}' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
```
## 200 OK
```json
{
"message": "Successfully marked all reports for deletion"
}
```
## Path parameters
| Name |
Req/Opt |
Type |
Description |
| report_identifier |
required |
string |
Report ID (UUID). To get the report ID, copy the report_identifier returned when you Create a report. Otherwise, use the List report history endpoint. |
## Response parameters
| Name |
Type |
Description |
| message |
string |
Deletion message. |