List Digicert EV Approvers

Use this API to list EVInput Parameters approvers registered with DigiCert

POSTcertview/rest/public/v1/certificates/enrollment/digicert/evApprovers

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

certhash 

Optional

string

Secure hash of the certificate

commonName 

Optional

string

Fully qualified domain name of the Web server that will receive the certificate

serialNumber 

Optional

string

A short, unique identifier for each certificate generated by the certificate issuer

Sample to List DigiCert ProductsSample to List DigiCert Products

API Request

curl -X POST
 "<qualys_base_url>/certview/v1/certificates/digicert/products" -H "Accept: application/json" 
-H "Content-Type: application/json" -d '{"certhash": "a52d05988b61a33d6ac3edb449eb47150fa5b7a26c7dfc4e61f905ca36e165ee"}' 
-H "Authorization: Bearer <jwt token>"

Response

{
  "evApprovers": [
    {
      "userId": "1541521",
      "name": "John White",
      "firstName": "John",
      "lastName": "White"
    },
    {
      "userId": "1551253",
      "name": "Kelly Smith",
      "firstName": "Kelly",
      "lastName": "Smith"
    }
  ]
}