---
title: "Start report run"
source_url: https://dev.digicert.com/certcentral-apis/report-library-api/start-report-run.html
api_method: POST
api_endpoint: "https: //api.digicert.com/reports/v1/report/{{report_identifier}}/run"
api_url: "https: //api.digicert.com/reports/v1/report/{{report_identifier}}/run"
---
**POST** `https: //api.digicert.com/reports/v1/report/{{report_identifier}}/run`
Use this endpoint to start a report run on-demand.
## Example requests and responses
## cURL
```
curl --request POST 'https: //api.digicert.com/reports/v1/report/{{report_identifier}}/run' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
```
## 200 Created
```
{
"report_identifier": "88de5e19-ec57-4d70-865d-df953b062574",
"message": "Successfully triggered report creation"
}
```
## Path parameters
| Name |
Req/Opt |
Description |
| report_identifier |
required |
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 |
| report_identifier |
string |
Report ID. |
| message |
string |
Success message. |