List DigiCert Organizations

Use this API to list Organizations registered with DigiCert

Postcertview/rest/public/v1/certificates/enrollment/digicert/organizations

Input ParametersInput Parameters

It is required to provide at least one of the params certhash, commonName or serialNumber.

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 OrganizationsSample to List DigiCert Organizations

API Request

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

Response

{
  "organizations": [
    {
      "id": 525858,
      "status": "active",
      "name": "Qualys, Inc",
      "assumedName": null,
      "displayName": "Qualys, Inc",
      "active": true
    }
  ]
}