How to build a report
The Report Library API allows you to build reports that run on a schedule to provide you with customized data from your CertCentral account.
When you build a report, you create a new report record. The report record describes the data to include in the report, how to organize and filter the data, and the schedule for running the report. To create a new report record, submit a POST
request to the Create report endpoint:
https://api.digicert.com/reports/v1/report
Prepare your request
The Create report endpoint accepts a JSON payload with fields that define these report attributes:
Report type
Format (file type)
Report columns (data fields)
Schedule
Column filters
Data sources (subaccounts and divisions)
Notifications and emails
1. Choose report type
The report type determines what data the report will include. Each report type has unique configuration options and columns that you can filter in different ways. Report types include:
Report type | Identifier | Description |
---|---|---|
Order |
| Details about certificate orders you have access to. |
Domain |
| Details about domains in your account, including validation details. |
Balance history |
| Account balance and transaction history. |
Audit log |
| Data from audit log entries. |
Organization |
| Details about organizations in your account, including validation details. |
FQDN |
| Details about FQDN and wildcard usage for active orders. |
Users |
| Details about users for a given account. |
To set the report type, use the report_type
request parameter. In your Create report request, place the report_type
parameter inside the report_metadata
object. For example:
2. Choose report format
The report format determines the file type of the report:
CSV
JSON
EXCEL
Note
Some formats are unavailable for certain report types. To see which formats a report type supports, check the value of the supported_formats
fields in the List report types response.
To choose the format for a report, use the format
array in your request. Because reports are only generated in one format, the format
array should only contain one item. Place the format
array at the top level of the request payload.
For example, this request creates a report that generates the results of a report run as a downloadable CSV file:
{ "display_name": "Example report", "format": ["CSV"], … }
3. Choose report columns
Columns determine what data the report will include. Each report type has different columns. To see the columns you can add to each report type, use the List columns endpoint.
To add columns to a report, use the columns
array. The columns
array is a list of objects containing the identifier
of columns to include in the report. The order of objects in the array is the same as the column order in the generated reports. Place the columns
parameter inside the report_metadata
object in the request.
For example, this request creates an order report with columns for the account ID, number of SANs, certificate ID, and the validity period of the certificate in days:
{ "display_name": "Example report", … "report_metadata": { "report_type": "orders", "columns": [ { "identifier": "account_id" }, { "identifier": "number_of_sans" }, { "identifier": "certificate_id" }, { "identifier": "certificate_validity_days" } ], … } }
4. Schedule report
When you create a report, you can schedule it to run automatically or on-demand.
To define the report schedule, use the schedule
object in your request. For detailed information about each field in the schedule
object, see the reference documentation for the Create report endpoint. Place the schedule
object at the top level of the JSON payload. For example:
5. (Optional) Add column filters
Column filters allow you to build reports that only include the data you need.
Note
When creating a report, use date range filters to customize the time frame you want the report to cover. Otherwise, DigiCert creates the report using the default date range for the given report type. For more information, see Custom date ranges.
To add a filter, include the filters
array in your Create report request. The filters
array is a list of objects. Each object defines a single filter. Filter objects include these key/value pairs:
Note
For more information and examples of how to use different filter types and operators, see Filters reference and examples.
When you submit a Create report request, place the filters
array inside the report_metadata
object. For example:
{ … "report_metadata": { "report_type": "orders", "columns": […], "filters": [ { "filter_identifier": "in", "column_identifier": "status", "values": [ "Pending" ] } ], … } … }
6. (Optional) Choose sources
Some report types allow you include subaccounts and divisions as data sources for the report. If a report type supports this option, you can customize which subaccounts and divisions to use as sources by including the sources
object in your JSON request.
Note
To see which report types support the option to customize subaccount and division sources, check the value of the sub_account_enabled
and division_enabled
fields in the List report types response.
The sources
object includes these key/value pairs:
Name | Req/Opt | Type | Description |
---|---|---|---|
sources | optional | object | Object with key/value pairs that determine the sources of data for the report. If the report type can use subaccounts and divisions as sources, and if the
|
.. division_filter_type | optional | string | |
.. divisions | conditional | array | |
.. sub_account_filter_type | optional | string | |
.. sub_accounts | conditional | array |
Place the sources
object inside the report_metadata
object in your request payload. For example:
{ "display_name": "Example report", … "report_metadata": { "sources": { "division_filter_type": "CHOOSE_DIVISIONS", "divisions": [123, 345, 456], "sub_account_filter_type": "CHOOSE_SUB_ACCOUNTS", "subaccounts": [123, 345, 456] }, … } … }
7. (Optional) Add notification emails
When you create a report, you can assign users to receive notification emails about the report. These notifications include:
Alerts when a new report is ready to download.
Warnings when a report you have not downloaded is about to be deleted.
The Report Library can only send notification emails to admins in your CertCentral account. To assign users to receive notification emails, include the notification_emails
array in the body of your request. The notification_emails
array is a list of objects containing details about the users who receive emails about the report. You can add as many users as you like.
Each object in the notification_emails
array includes these key/value pairs:
Name | Req/Opt | Type | Description |
---|---|---|---|
notification_emails | optional | array of objects | List of objects with information about users to notify when a report is generated and ready for download. Users must be admins in your CertCentral account. |
.. user_id | required | integer | User ID. |
.. first_name | required | string | User first name. |
.. last_name | required | string | User last name. |
required | string | User email address. |
Place the notification_emails
array at the top level of the request payload. For example:
{ "display_name": "Example report", "notification_emails": [ { "user_id": 1234567, "first_name": "Jane", "last_name": "Doe", "email": "jane.doe@example.com" } ], … }
Submit your request
When you're ready, submit your complete request to the Create report endpoint:
If you schedule the report to run on-demand, the report run starts the moment the report is created. Otherwise, the schedule in the report record determines the start date of the first report run.
What's next
After creating a report, you can:
Download completed report runs. Use the List report history endpoint to get the ID and status of each report run. If the status is
READY
, you can Download the report.Suspend the report. To suspend a scheduled report without removing completed report runs, use the Delete scheduled report endpoint.
Edit the report. To change the schedule, format, columns, or any other report attributes, or to resume a suspended report, use the Edit report endpoint.
Delete the report. Ready to remove the data for a report and all of its runs from your account? Use the Delete report endpoint.