Delete report run

DELETE https://api.digicert.com/reports/v1/report/{{report_identifier}}/{{report_run_identifier}}
Use this endpoint to permanently delete a report run.

After deleting a report run, you can no longer:

  • View information about the report run.
  • Download the results of the report run.

If a report has only one entry (for example, an on-demand report that has only run once), deleting the report run (report_run_identifier) also deletes the record for the report (report_identifier).

Example requests and responses

cURL

curl --request DELETE 'https://api.digicert.com/reports/v1/report/{{report_identifier}}/{{report_run_identifier}}' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \

200 OK

{
    "message": "Successfully marked report for deletion"
}

Path parameters

NameReq/OptDescription
report_identifierrequiredReport ID (UUID). To get the report ID, copy the report_identifier returned when you Create a report. Otherwise, use the List report history endpoint.
report_run_identifierrequiredID of the specific report run to download (UUID). To get the report run ID, use the List report history endpoint.

Response parameters

NameTypeDescription
messagestringDeletion message.