List report names

GET https://api.digicert.com/reports/v1/report/names
Use this endpoint to list the display name for each report in your account.

Example requests and responses

cURL

curl --request GET 'https://api.digicert.com/reports/v1/report/names' \
--header 'X-DC_DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \

200 OK

{
    "report_names": [
      "Example Report A",
      "Example Report B",
      "Example Report C"
  ]
}

URL query parameters

NameReq/OptTypeDescription
report_display_nameoptionalstringDisplay name of a specific report to search for. Supports partial search. Case insensitive.

Response parameters

NameTypeDescription
report_namesarrayList of report display names. If the request uses the report_display_name query parameter, the response only includes report names that match the provided value.