Order info

GET https://www.digicert.com/services/v2/order/certificate/{{order_id}}
Use this endpoint to get details for a certificate order.

Items to note:

  • You can replace {{order_id}} in the URL path with the thumbprint or serial number of the primary certificate on the order.
  • You cannot get order details by passing in the thumbprint or serial number of a duplicate certificate on the order.

Example requests and responses

curl -X GET \
  https://www.digicert.com/services/v2/order/certificate/{{order_id}}\
  -H 'Content-Type: application/json' \
  -H 'X-DC-DEVKEY: {{api_key}}'
import requests

url = "https://www.digicert.com/services/v2/order/certificate/{{order_id}}"

headers = {
    'X-DC-DEVKEY': "{{api_key}}",
    'Content-Type': "application/json"
    }

response = requests.request("GET", url, headers=headers)

print(response.text)
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://www.digicert.com/services/v2/order/certificate/{{order_id}}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
var request = require("request");

var options = { method: 'GET',
  url: 'https://www.digicert.com/services/v2/order/certificate/{{order_id}}',
  headers: 
   { 'Content-Type': 'application/json',
     'X-DC-DEVKEY': '{{api_key}}' } };

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
{
  "id": 123456,
  "certificate": {
    "common_name": "example.com",
    "dns_names": [
      "example2.com",
      "example3.com"
    ],
    "date_created": "2018-10-16T20:05:28+00:00",
    "csr": "<csr>",
    "organization": {
      "id": 112233
    },
    "organization_units": [
      "Not Fake Company Inc."
    ],
    "server_platform": {
      "id": -1,
      "name": "OTHER",
      "install_url": "http://www.digicert.com/SSL-certificate-installation.htm",
      "csr_url": "http://www.digicert.com/csr-creation.htm"
    },
    "signature_hash": "sha256",
    "key_size": 2048,
    "ca_cert": {
      "id": "<cert_id>",
      "name": "DigiCert SHA2 Secure Server CA"
    }
  },
  "status": "needs_approval",
  "is_renewal": false,
  "date_created": "2018-10-16T20:05:28+00:00",
  "organization": {
    "id": 112233,
    "name": "Epigyne Unwieldiness llc",
    "assumed_name": "Epigyne Unwieldiness",
    "display_name": "Epigyne Unwieldiness llc (Epigyne Unwieldiness)",
    "city": "Minneapolis",
    "state": "Minnesota",
    "country": "us"
  },
  "validity_years": 1,
  "disable_renewal_notifications": false,
  "auto_renew": 0,
  "auto_reissue": 0,
  "container": {
    "id": 15,
    "name": "History Department",
    "is_active": true
  },
  "product": {
    "name_id": "ssl_plus",
    "name": "Standard SSL",
    "type": "ssl_certificate",
    "validation_type": "ov",
    "validation_name": "OV",
    "validation_description": "Normal Organization Validation",
    "csr_required": true
  },
  "organization_contact": {
    "first_name": "Gia",
    "last_name": "Booth",
    "email": "gia.booth@inbox.com",
    "job_title": "Clinical Laboratory Technician",
    "telephone": "666-186-6450",
    "telephone_extension": "736"
  },
  "technical_contact": {
    "first_name": "Gia",
    "last_name": "Booth",
    "email": "gia.booth@inbox.com",
    "job_title": "Clinical Laboratory Technician",
    "telephone": "666-186-6450",
    "telephone_extension": "736"
  },
  "user": {
    "id": 44,
    "first_name": "John",
    "last_name": "Smith",
    "email": "john.smith@digicert.com"
  },
  "purchased_dns_names": 2,
  "requests": [
    {
      "id": 198,
      "date": "2018-10-16T20:05:28+00:00",
      "type": "new_request",
      "status": "pending",
      "comments": "Certificate comment."
    }
  ],
  "public_id": "<public_id>",
  "is_out_of_contract": false,
  "payment_method": "balance",
  "product_name_id": "ssl_plus",
  "custom_fields": [
    {
      "metadata_id": 12,
      "label": "Invoice #",
      "value": "123456"
    }
  ],
  "disable_issuance_email": false,
  "is_guest_access_enabled": false
}
{
  "id": 123456,
  "certificate": {
    "common_name": "example.com",
    "dns_names": [
      "example2.com",
      "example3.com"
    ],
    "date_created": "2019-04-30T18:02:50+00:00",
    "date_issued": "2019-04-30T20:01:45+00:00",
    "valid_from": "2019-04-30",
    "valid_till": "2020-04-30",
    "days_remaining": 289,
    "csr": "<csr>",
    "organization": {
      "id": 112233
    },
    "organization_units": [
      "Not Fake Company Inc."
    ],
    "server_platform": {
      "id": -1,
      "name": "OTHER",
      "install_url": "http://www.digicert.com/SSL-certificate-installation.htm",
      "csr_url": "http://www.digicert.com/csr-creation.htm"
    },
    "signature_hash": "sha256",
    "key_size": 2048,
    "user_id": 12345
  },
  "status": "issued",
  "is_renewal": false,
  "date_created": "2019-04-30T18:02:50+00:00",
  "organization": {
    "id": 112233,
    "name": "Epigyne Unwieldiness llc",
    "assumed_name": "Epigyne Unwieldiness",
    "display_name": "Epigyne Unwieldiness llc (Epigyne Unwieldiness)",
    "city": "Minneapolis",
    "state": "Minnesota",
    "country": "us"
  },
  "validity_years": 1,
  "disable_renewal_notifications": false,
  "auto_renew": 0,
  "auto_reissue": 0,
  "container": {
    "id": 15,
    "name": "History Department",
    "is_active": true
  },
  "product": {
    "name_id": "ssl_plus",
    "name": "Standard SSL",
    "type": "ssl_certificate",
    "validation_type": "ov",
    "validation_name": "OV",
    "validation_description": "Normal Organization Validation",
    "csr_required": true
  },
  "organization_contact": {
    "first_name": "Gia",
    "last_name": "Booth",
    "email": "gia.booth@inbox.com",
    "job_title": "Clinical Laboratory Technician",
    "telephone": "666-186-6450",
    "telephone_extension": "736"
  },
  "technical_contact": {
    "first_name": "Gia",
    "last_name": "Booth",
    "email": "gia.booth@inbox.com",
    "job_title": "Clinical Laboratory Technician",
    "telephone": "666-186-6450",
    "telephone_extension": "736"
  },
  "user": {
    "id": 44,
    "first_name": "John",
    "last_name": "Smith",
    "email": "john.smith@digicert.com"
  },
  "purchased_dns_names": 2,
  "requests": [
    {
      "id": 198,
      "date": "2018-10-16T20:05:28+00:00",
      "type": "new_request",
      "status": "pending",
      "comments": "Certificate comment."
    }
  ],
  "is_out_of_contract": false,
  "payment_method": "balance",
  "product_name_id": "ssl_plus",
  "custom_fields": [
    {
      "metadata_id": 12,
      "label": "Invoice #",
      "value": "123456"
    }
  ],
  "disable_issuance_email": false
}

URL query parameters

NameTypeDescription
include_caa_statusbooleanIf true, the response includes a caa_status_message with the status of the CAA resource record check for each domain in the order. If false (default), the response omits the caa_status_message. See Glossary – CAA resource record check status.
Example
Note: The include_caa_status check only works while the TLS or Secure Email certificate order is in a pending state. caa_status_message is not returned for canceled, issued, expired, and revoked certificate orders.

Response parameters

NameTypeDescription
idintOrder ID.
certificateobjectDetails about the certificate.
.. idintCertificate ID.
.. thumbprintstringThumbprint of the certificate.
.. serial_number*stringSerial number of the certificate.
.. common_namestringName secured by the certificate.
.. cert_validityobjectDescribes the validity period of the certificate.
.. .. yearsintTotal number of years the certificate is valid. Only returned if you used years to set the validity period of the certificate.
.. .. daysintTotal number of days the certificate is valid. Only returned if you used days to set the validity period of the certificate.
.. .. custom_expiration_dateintExpiration date for the certificate. Only returned if you used a custom expiration date to set the validity period of the certificate.
.. emailsarrayList of emails the certificate secures. Returned only for S/MIME certificate orders.
.. dns_namesarrayList of additional names secured by the certificate.
.. date_createdstringDate and time the certificate order was created.
Format: UTC timezone and ISO 8601 date
.. date_issuedstringDate and time the primary certificate on the order was issued. Omitted if no certificates have been issued for the order.
Format: UTC timezone and ISO 8601 date
.. valid_from*stringDate when certificate validity starts.
Format:
yyyy-MM-dd
.. valid_till*stringExpiration date of the certificate.
Format:
yyyy-MM-dd
.. days_remainingintNumber of days until certificate expires.
.. csrstringCertificate signing request. Not returned for Verified Mark Certificates.
.. organizationobjectOrganization on the certificate.
.. .. idintOrganization ID.
.. organization_unitsarrayList of organization units on the certificate.
.. server_platformobjectDetails about the server platform.
.. .. idintServer platform ID. See Glossary – Server platforms.
.. .. namestringName of the server platform.
.. .. install_urlstringURL for Certificate installation instructions.
.. .. csr_urlstringURL for CSR generation instructions.
.. signature_hashstringSigning algorithm used by the certificate.
.. key_sizeintNumber of bits used in the key.
.. ca_certobjectCertificate authority (CA) certificate used to sign the certificate.
.. .. idstringCA certificate ID.
.. .. namestringName of the CA.
additional_emailsarrayList of additional emails associated with the order that receive certificate lifecycle notifications.
statusstringStatus of the order. See Glossary – Order status.
is_renewalboolIf true, the order is a renewal. Otherwise, false.
is_renewedboolIf true, the order has been renewed. Otherwise, false.
renewed_order_idintOrder ID of the previous order. Returned only if order is a renewal.
was_renewed_by_order_idintOrder ID of the renewal for this order. Returned only if order has been renewed.
date_createdstringOrder creation date.
Format: UTC timezone and ISO 8601 date
organizationobjectDetails about the organization associated with the order.
.. idintOrganization ID.
.. namestringLegal name of the organization.
.. assumed_namestringPublic name of the organization. Also called DBA name.
.. display_namestringFull name of the organization. Constructed using name + assumed_name.
.. citystringCity where the organization is located.
.. statestringState where the organization is located.
.. countrystringCountry where the organization is located.
.. telephonestringOrganization telephone number.
validity_yearsstringTotal number of years the order is valid.
order_valid_from*stringStart date of the order validity period.
Format:
YYYY-MM-DD
order_valid_till*stringExpiration date of the order.
Format:
YYYY-MM-DD
order_validityobjectDescribes the validity period of the order. For Multi-year Plans, order validity matches the duration of the plan.
.. yearsintTotal number of years the order is valid. Only returned if you used years to set the validity period of the order.
.. daysintTotal number of days the order is valid. Only returned if you used days to set the validity period of the order.
.. custom_expiration_datestringExpiration date of the order. Only returned if you used a custom expiration date to set the validity period of the order.
disable_renewal_notificationsboolWhether renewal notifications are disabled for the order. If true, renewal notifications are disabled for the order. If false, renewal notifications are enabled.
auto_renewintAuto-renew setting for the order.
Possible values:0 (disabled) or 1 (enabled)
auto_reissueintAuto-reissue setting for the order.
Possible values:0 (disabled) or 1 (enabled) DigiCert Multi-year Plans support automatic reissue requests. When auto-reissue is enabled, DigiCert automatically creates a reissue request for the most recently issued certificate when that certificate is within 30 days of expiring. Auto-reissue repeats until the order expires. To learn more about reissuing certificates in a Multi-year Plan, seeMulti-year Plans.
containerobjectDetails about the container associated with the order.
.. idintContainer ID.
.. namestringName of the container.
.. is_activeboolActive status of the container.
productobjectDetails about the ordered product.
.. name_idstringName ID of the product. See Glossary – Product identifiers.
.. namestringDisplay name of the product. See Glossary – Product identifiers.
.. typestringProduct type. See Glossary – Product types.
.. validation_typestringValidation type used by the product. See Glossary – Validation types.
.. validation_namestringDisplay name of the validation type.
.. validation_descriptionstringDescription of the validation type.
.. csr_requiredboolSpecifies if a CSR is required for the product type.
organization_contactobjectDetails about the organization contact on the order. See Structures – Contact details object.
technical_contactobjectDetails about the technical contact on the order. See Structures – Contact details object.
userobjectDetails about the user that submitted the order. See Structures – User details object.
purchased_dns_namesintNumber of additional SANs purchased.
requestsarrayList of objects with details about requests associated with the order.
.. idintRequest ID.
.. datestringTimestamp of when the request was submitted.
Format: UTC timezone and ISO 8601 date
.. typestringRequest type.
Possible values: new_request, revoke, duplicate, reissue
.. statusstringStatus of the request.
Possible values: submitted, pending, approved, rejected
.. commentsstringComments about the request for the reviewing administrator. Omitted if no comments are present.
receipt_idintReceipt ID.
subjectobjectObject containing subject details. Omitted if not present.
.. emailstringFor code signing (code_signing) certificate orders, the subject email specified in the order request. Omitted if not present.
cs_provisioning_methodstringFor document signing and code signing orders, returns the provisioning method for the certificate. See Glossary – CS provisioning methods.
ship_infoobjectFor document signing and code signing orders with a provisioning method of ship_token, returns the token shipping address.
.. namestringName of recipient.
.. addr1stringShipping address.
.. addr2stringContinuation of shipping address.
.. citystringShipping city.
.. statestringShipping state.
.. zipstringShipping postal code.
.. countrystringShipping country.
.. methodstringShipping priority for the token.
Possible values:STANDARD, EXPEDITED
hardware_init_codestringFor code signing certificates with a provisioning method of client_app, initialization code to use with the DigiCert Hardware Certificate Installer.
public_id
Deprecated*
stringID used for express installations.
*Deprecated. DigiCert no longer supports the Express Install workflow that required a public ID. The API stopped returning the public_id parameter on May 31, 2022. For more information, see the CertCentral change log.
allow_duplicatesboolSpecifies if the order allows duplicate certificates.
duplicates_countintNumber of duplicate certificates associated with the order.
reissues_countintNumber of reissued certificates associated with the order.
pricenumberOrder price.
currencystringCurrency unit for order price.
Note: The currency field is omitted for orders created before September 6, 2022, and for orders placed using units or vouchers.
pricesarray of objectsIf you pay for a reissued certificate using a different currency than when you created the order, the Order info endpoint returns a prices array. Each item in the prices array represents the total price of reissues you have requested for the order in the corresponding currency.
When you pay for a reissued certificate using the same currency as the original order, the extra cost of the reissued certificate is added to the value of the top-level price response parameter.
.. pricenumberTotal price of reissues requested in the corresponding currency.
.. currencystringCurrency unit for the corresponding price value.
user_assignmentsarrayList of users that created or have been assigned to the order. SeeStructures – User details object.
is_out_of_contractboolContract status of the order.
payment_methodstringPayment method used for the order.
Note: If the order was submitted with a payment_method value of profile, the Order info endpoint returns a payment_method value of card and the response includes a payment_profile object containing information about the credit card used for the order.
payment_profileobjectObject containing information about the credit card used for the order. Only returned if the card is saved to the CertCentral account (for example, if you submitted the order with a payment_method value of profile). If the order was submitted with a new credit card not saved to the CertCentral account, the Order info endpoint does not return a payment_profile object.
product_name_idstringName ID of the product. See Glossary – Product identifiers.
custom_fieldsarrayList of custom field data.
.. metadata_idintCustom field metadata ID.
.. labelstringName of the custom field.
.. valuestringEntered value for the custom field.
disable_issuance_emailboolSpecifies if issuance emails are sent.
disable_ctboolSpecifies if the certificate will be logged in public CT logs. Not returned for Verified Mark Certificates (VMC). CT logging cannot be disabled for VMCs.
alternative_order_idstringThe custom alphanumeric ID assigned to the order. Alternative order IDs do not replace the unique order ID that DigiCert assigns each order request. You cannot use alternative order IDs to search for or identify orders in API calls that require an order_id parameter in the URL path or request body. Only returned if the original order request included a value for the alternative_order_id request parameter.
api_keyobjectSpecifies if the order was requested via Services API or ACME. Omitted if order was requested via another method (e.g., CertCentral account, Guest Request URL, etc.).
.. namestringName of the API key or ACME Directory URL.
.. key_typestringKey type used for the request.
Possible values:api_key (API), acme_url (ACME)
benefitsobjectObject with information about competitive replacement discounts and other benefits applied to the order.
.. actual_pricestringPrice before benefits and other discounts.
.. discount_percentstringTotal discount percentage applied.
.. benefitsarrayLists the different types of benefit applied to the order.
Possible values: cr_benefit
.. benefits_dataobjectObject with information about each benefit applied to the order.
.. .. cr_benefitobjectObject with information about the competitive replacement benefit applied to the order.
.. .. .. typestringType of competitive replacement benefit applied to the order.
Possible values: DISCOUNT
.. .. .. discount_percentagefloatTotal percentage discount applied to the actual_price of the order. Discount percentage is the sum of the competitive replacement discount and the premium discount percentage.
.. .. .. premium_discount_percentagefloatPercentage discount applied for ordering a premium DigiCert product.
.. .. .. availed_domainsarrayList of domains on the order that were eligible for competitive replacement benefits.
is_multi_year_planstringReturns "1" if the order is a Multi-year Plan. This parameter is not returned if the order is not a Multi-year Plan
order_approval_completebooleanDescribes the status of the verified contact order approval step. If true, order approval is complete. Otherwise, false. Only returned for EV TLS/SSL orders.
approverobjectObject with details about the CertCentral user who approved the certificate order request. If the order skipped the request approval step, the approver is the user who submitted the certificate order request. Returns an empty object if the order has no approver (for example, if the request needs approval or was rejected): "approver": {}
.. idintApprover user ID.
.. first_namestringApprover first name.
.. last_namestringApprover last name.
.. emailstringApprover email address.
is_guest_access_enabledboolIf true, guest access is enabled for the order. Otherwise, false.
vmcobjectObject with logo data for a Verified Mark Certificate. Only returned if the order is for a Verified Mark Certificate.
.. logo_idintID of the logo for a Verified Mark Certificate.
.. logostringCompressed logo data, formatted as a base64-encoded string.
.. enable_hostingboolIf 1, DigiCert hosts the image and certificate files. Otherwise, 0 (default).
When image and certificate file hosting is enabled, the Order info](/certcentral-apis/services-api/orders/order-info.html) endpoint returns the location of the hosted files in the hosted_logo_location and hosted_cert_location response parameters.
[Learn more about VMC or CMC image and file hosting
.
.. hosted_logo_locationstringIf hosting is enabled, location of the hosted image file for the logo.
.. hosted_cert_locationstringIf hosting is enabled, location of the hosted certificate file.
.. mark_typeobjectMark type.
Possible values: registered_mark (registered trademarks) and government_mark (government marks).
.. mark_type_dataobjectObject with details about the logo the certificate secures.
.. .. country_codestringTwo-letter country code. For government marks, identifies the country or region granting rights to use the logo. For registered trademarks, identifies the country or region where the logo is registered.
Possible values: See Glossary – Trademark offices and country codes for VMC logos
.. .. state_provincestringFor government marks, state or province granting rights to use the logo.
.. .. localitystringFor government marks, the locality granting rights to use the logo.
.. .. citationstringFor government marks, identifier for the law, statute, or citation granting rights to use the logo.
.. .. registration_numberstringFor registered trademarks, the trademark registration number for the logo.
.. trademark_country_code
Deprecated*
stringTwo-letter code for the country or region where the logo is trademarked.
Allowed values: See Glossary – Trademark offices and country codes for VMC logos
.. trademark_registration_number
Deprecated*
stringTrademark registration number of the logo.

- Returned only for issued certificate orders.*

Examples by product

The following examples show the structure of the JSON response for orders with an issued certificate for these product types:

  • GeoTrust DV SSL
  • Basic OV
  • Basic EV
  • Code Signing
  • EV Code Signing
  • Document Signing
  • Class 1 S/Mime

GeoTrust DV SSL

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "thumbprint": "AB0123456789C0D1EF234AB56C7890DE12ABC3DE",
      "serial_number": "123a56bc78d9e0a1234b567c89d01e23",
      "common_name": "example.com",
      "dns_names": [
        "example.com"
      ],
      "date_created": "2022-03-14T22:52:11+00:00",
      "date_issued": "2022-03-15T17:09:16+00:00",
      "valid_from": "2022-03-13",
      "valid_till": "2023-03-14",
      "days_remaining": 364,
      "cert_validity": {
        "years": 1
      },
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "DF3689F672CCB90C",
        "name": "GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1"
      },
      "user_id": 123456,
      "receipt_id": "12345678",
      "purchased_dns_names": "1",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-14T22:52:11+00:00",
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_from": "2022-03-14",
    "order_valid_till": "2023-03-14",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 12345,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "ssl_dv_geotrust_flex",
      "name": "GeoTrust DV SSL",
      "type": "dv_ssl_certificate",
      "csr_required": true
    },
    "notes": [
      {
        "id": 123456,
        "date_created": "2022-03-14T22:52:11+00:00",
        "text": "Form autofill.",
        "user": {
          "id": 1234567,
          "first_name": "Jane",
          "last_name": "Doe",
          "email": "jane.doe@example.com"
        }
      }
    ],
    "user": {
      "id": 123456,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 1,
    "receipt_id": 12345678,
    "allow_duplicates": false,
    "duplicates_count": 0,
    "reissues_count": 0,
    "price": 149,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "ssl_dv_geotrust_flex",
    "disable_issuance_email": false,
    "disable_ct": false,
    "dcv_method": "dns-txt-token",
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "is_multi_year_plan": "1",
    "has_pending_request": false
  }

Basic OV

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "thumbprint": "AB0123456789C0D1EF234AB56C7890DE12ABC3DE",
      "serial_number": "123a56bc78d9e0a1234b567c89d01e23",
      "common_name": "example.com",
      "dns_names": [
        "example.com"
      ],
      "date_created": "2022-03-15T17:09:16+00:00",
      "date_issued": "2022-03-15T19:09:17+00:00",
      "valid_from": "2022-03-14",
      "valid_till": "2023-03-15",
      "days_remaining": 365,
      "cert_validity": {
        "years": 1
      },
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "organization": {
        "id": 123456
      },
      "server_platform": {
        "id": 14,
        "name": "Microsoft IIS 5 or 6",
        "install_url": "http://www.digicert.com/ssl-certificate-installation-microsoft-iis-5-6.htm",
        "csr_url": "http://www.digicert.com/csr-creation-microsoft-iis-5-6.htm",
        "best_format": "cer"
      },
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "33621C1BDD0C9357",
        "name": "DigiCert TLS RSA SHA256 2020 CA1"
      },
      "user_id": 123456,
      "receipt_id": "1234567",
      "purchased_dns_names": "1",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-15T17:09:16+00:00",
    "organization": {
      "id": 123456,
      "name": "Example Org",
      "display_name": "Example Org",
      "is_active": true,
      "city": "Newark",
      "state": "Alabama",
      "country": "us",
      "telephone": "012-840-4979"
    },
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_from": "2022-03-15",
    "order_valid_till": "2023-03-15",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "ssl_basic",
      "name": "Basic OV",
      "type": "ssl_certificate",
      "validation_type": "ov",
      "validation_name": "OV",
      "validation_description": "Normal Organization Validation",
      "csr_required": true
    },
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "job_title": "Site Reliability Engineer",
      "telephone": "012-840-4979",
      "name": "Jane Doe"
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 1,
    "receipt_id": 1234567,
    "allow_duplicates": true,
    "price": 268,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "ssl_basic",
    "disable_issuance_email": false,
    "disable_ct": false,
    "dcv_method": "email",
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "is_multi_year_plan": "1",
    "has_pending_request": false
  }

Basic EV

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "thumbprint": "AB0123456789C0D1EF234AB56C7890DE12ABC3DE",
      "serial_number": "123a56bc78d9e0a1234b567c89d01e23",
      "common_name": "example.com",
      "dns_names": [
        "example.com"
      ],
      "date_created": "2022-03-15T17:21:32+00:00",
      "date_issued": "2022-03-15T19:09:16+00:00",
      "valid_from": "2022-03-14",
      "valid_till": "2023-03-15",
      "days_remaining": 365,
      "cert_validity": {
        "years": 1
      },
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "organization": {
        "id": 123456
      },
      "server_platform": {
        "id": 65,
        "name": "Novell iChain",
        "install_url": "http://www.digicert.com/ssl-certificate-installation-novell-ichain.htm",
        "csr_url": "http://www.digicert.com/csr-creation-novell-ichain.htm",
        "best_format": "default"
      },
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "570ADFB8EBCE94B8",
        "name": "DigiCert SHA2 Extended Validation Server CA"
      },
      "user_id": 123456,
      "receipt_id": "1234567",
      "purchased_dns_names": "1",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-15T17:21:32+00:00",
    "organization": {
      "id": 123456,
      "name": "Example Org",
      "display_name": "Example Org",
      "is_active": true,
      "city": "Newark",
      "state": "Alabama",
      "country": "us",
      "telephone": "012-840-4979"
    },
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_from": "2022-03-15",
    "order_valid_till": "2023-03-15",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "ssl_ev_basic",
      "name": "Basic EV",
      "type": "ssl_certificate",
      "validation_type": "ev",
      "validation_name": "EV",
      "validation_description": "Extended Organization Validation (EV)",
      "csr_required": true
    },
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "job_title": "Site Reliability Engineer",
      "telephone": "012-840-4979",
      "name": "Jane Doe"
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 1,
    "receipt_id": 1234567,
    "allow_duplicates": true,
    "price": 398,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "ssl_ev_basic",
    "disable_issuance_email": false,
    "disable_ct": false,
    "dcv_method": "email",
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "is_multi_year_plan": "1",
    "has_pending_request": false
  }

Code signing

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "thumbprint": "AB0123456789C0D1EF234AB56C7890DE12ABC3DE",
      "serial_number": "123a56bc78d9e0a1234b567c89d01e23",
      "date_created": "2022-03-14T22:37:26+00:00",
      "valid_from": "2022-03-14",
      "valid_till": "2023-03-14",
      "days_remaining": 364,
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "organization": {
        "id": 123456
      },
      "server_platform": {
        "id": 55,
        "name": "Sun Java",
        "install_url": "http://www.digicert.com/code-signing/java-code-signing-guide.htm",
        "csr_url": "https://www.digicert.com/easy-csr/keytool.htm",
        "best_format": "p7b"
      },
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "05846DBDD3A32AC3",
        "name": "DigiCert Trusted G4 Code Signing RSA4096 SHA384 2021 CA1"
      },
      "user_id": 123456,
      "receipt_id": "1234567",
      "purchased_dns_names": "0",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-14T22:37:26+00:00",
    "organization": {
      "id": 1595439,
      "name": "Example Org",
      "display_name": "Example Org",
      "is_active": true,
      "city": "Newark",
      "state": "Alabama",
      "country": "us",
      "telephone": "012-840-4979"
    },
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_from": "2022-03-14",
    "order_valid_till": "2023-03-14",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "code_signing",
      "name": "Code Signing",
      "type": "code_signing_certificate",
      "validation_type": "cs",
      "validation_name": "CS",
      "validation_description": "Code Signing Organization Validation",
      "csr_required": false
    },
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "job_title": "Site Reliability Engineer",
      "telephone": "012-840-4979",
      "name": "Jane Doe"
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 0,
    "receipt_id": 1234567,
    "allow_duplicates": false,
    "price": 499,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "code_signing",
    "disable_issuance_email": false,
    "disable_ct": false,
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "has_pending_request": false
  }

EV Code Signing

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "date_created": "2022-03-14T22:43:20+00:00",
      "valid_from": "2022-03-14",
      "valid_till": "2023-03-14",
      "days_remaining": 364,
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "organization": {
        "id": 123456
      },
      "server_platform": {
        "id": 23,
        "name": "SafeNet eToken 5110 CC (RSA 4096 and ECC)",
        "best_format": "default"
      },
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "05846DBDD3A32AC3",
        "name": "DigiCert Trusted G4 Code Signing RSA4096 SHA384 2021 CA1"
      },
      "user_id": 123456,
      "receipt_id": "1234567",
      "purchased_dns_names": "0",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-14T22:43:20+00:00",
    "organization": {
      "id": 123456,
      "name": "Example Org",
      "display_name": "Example Org",
      "is_active": true,
      "city": "Newark",
      "state": "Alabama",
      "country": "us",
      "telephone": "012-840-4979"
    },
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_till": "2023-03-14",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "code_signing_ev",
      "name": "EV Code Signing",
      "type": "code_signing_certificate",
      "validation_type": "ev_cs",
      "validation_name": "EV CS",
      "validation_description": "Code Signing Organization Extended Validation (EV CS)",
      "csr_required": false
    },
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "job_title": "Site Reliability Engineer",
      "telephone": "012-840-4979",
      "name": "Jane Doe"
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 0,
    "receipt_id": 1234567,
    "cs_provisioning_method": "client_app",
    "ship_info": {
      "name": "Example Org",
      "addr1": "121 Durham Court",
      "addr2": "Bldg 9",
      "city": "Minneapolis",
      "state": "mn",
      "zip": "12345",
      "country": "us",
      "method": "STANDARD"
    },
    "hardware_init_code": "k72jkzqmyj5098q32cd79jv31lj6",
    "allow_duplicates": false,
    "price": 699,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "code_signing_ev",
    "disable_issuance_email": false,
    "disable_ct": false,
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "has_pending_request": false
  }

Class 1 S/MIME

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "thumbprint": "AB0123456789C0D1EF234AB56C7890DE12ABC3DE",
      "serial_number": "123a56bc78d9e0a1234b567c89d01e23",
      "common_name": "jane.doe@example.com",
      "emails": [
        "jane.doe@example.com"
      ],
      "date_created": "2022-03-14T22:47:58+00:00",
      "valid_from": "2022-03-14",
      "valid_till": "2023-03-14",
      "days_remaining": 364,
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "EDE7A6473817F11E",
        "name": "DigiCert Assured ID Client CA G2"
      },
      "user_id": 123456,
      "email": "jane.doe@example.com",
      "receipt_id": "1234567",
      "purchased_dns_names": "0",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-14T22:47:58+00:00",
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_from": "2022-03-14",
    "order_valid_till": "2023-03-14",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "class1_smime",
      "name": "Class 1 S/MIME",
      "type": "client_certificate",
      "csr_required": false
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 0,
    "receipt_id": 1234567,
    "allow_duplicates": false,
    "price": 20,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "class1_smime",
    "disable_issuance_email": false,
    "disable_ct": false,
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "has_pending_request": false
  }

Document Signing – Organization (2000)

{
    "id": 123456789,
    "certificate": {
      "id": 234567890,
      "common_name": "Jane Doe",
      "date_created": "2022-03-15T19:14:36+00:00",
      "valid_from": "2022-03-15",
      "valid_till": "2023-03-15",
      "days_remaining": 365,
      "csr": "-----BEGIN CERTIFICATE REQUEST-----\r\n...\r\n-----END CERTIFICATE REQUEST-----",
      "organization": {
        "id": 1595439
      },
      "server_platform": {
        "id": 21,
        "name": "ePass3003",
        "best_format": "default"
      },
      "signature_hash": "sha256",
      "key_size": 4096,
      "ca_cert": {
        "id": "00E00CAD821F2504",
        "name": "DigiCert Document Signing CA"
      },
      "user_id": 123456,
      "receipt_id": "1234567",
      "purchased_dns_names": "0",
      "purchased_wildcard_names": "0"
    },
    "status": "issued",
    "is_renewal": false,
    "is_renewed": false,
    "date_created": "2022-03-15T19:14:36+00:00",
    "organization": {
      "id": 123456,
      "name": "Example Org",
      "display_name": "Example Org",
      "is_active": true,
      "city": "Newark",
      "state": "Alabama",
      "country": "us",
      "telephone": "012-840-4979"
    },
    "validity_years": 1,
    "order_validity": {
      "years": 1
    },
    "order_valid_till": "2023-03-15",
    "disable_renewal_notifications": false,
    "auto_renew": 0,
    "auto_reissue": 0,
    "container": {
      "id": 123456,
      "name": "Example Org",
      "is_active": true
    },
    "product": {
      "name_id": "document_signing_org_1",
      "name": "Document Signing - Organization (2000)",
      "type": "document_signing",
      "validation_type": "ds",
      "validation_name": "DS",
      "validation_description": "Document Signing Validation",
      "csr_required": false
    },
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "job_title": "Site Reliability Engineer",
      "telephone": "012-840-4979",
      "name": "Jane Doe"
    },
    "user": {
      "id": 1234567,
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com"
    },
    "purchased_dns_names": 0,
    "receipt_id": 1234567,
    "cs_provisioning_method": "client_app",
    "ship_info": {
      "name": "Jane Doe",
      "addr1": "419 5th Street East",
      "addr2": "Floor 60",
      "city": "Baltimore",
      "state": "md",
      "zip": "12345",
      "country": "us",
      "method": "STANDARD"
    },
    "hardware_init_code": "nn15zq69t8spts41nl4q2c32s0id",
    "allow_duplicates": false,
    "price": 579,
    "user_assignments": [
      {
        "id": 1234567,
        "first_name": "jane",
        "last_name": "doe",
        "email": "jane.doe@example.com",
        "job_title": "Site Reliability Engineer",
        "telephone": "012-840-4979"
      }
    ],
    "is_out_of_contract": true,
    "payment_method": "balance",
    "product_name_id": "document_signing_org_1",
    "disable_issuance_email": false,
    "disable_ct": false,
    "server_licenses": 1,
    "is_guest_access_enabled": true,
    "has_pending_request": false
  }