Use this endpoint to get the email addresses that receive validation emails from DigiCert for the email
domain control validation (DCV) method.
curl -X GET \
'https://www.digicert.com/services/v2/domain/{{domain_id}}/dcv/emails' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/domain/{{domain_id}}/dcv/emails"
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/domain/{{domain_id}}/dcv/emails"
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/domain/{{domain_id}}/dcv/emails',
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);
});
{
"name_scope": "sub.digicert.com",
"base_emails": [
"admin@sub.digicert.com",
"webmaster@sub.digicert.com",
"postmaster@sub.digicert.com",
"hostmaster@sub.digicert.com",
"administrator@sub.digicert.com"
],
"whois_emails": [
"someguy@digicert.com"
],
"dns_txt_emails": [
"alice@digicert.com",
"bob@digicert.com"
]
}
Name | Req/Opt | Description |
---|---|---|
domain_id | required |
ID of the domain to get DCV email addresses for. To get the ID of a domain, use the List domains endpoint. To get the DCV email addresses for any domain in your account without using the domain ID, replace domain_id with the FQDN.
|
Name | Type | Description |
---|---|---|
name_scope | string | Domain name scope of the email addresses. |
base_emails | array | List of constructed email addresses for the domain. |
whois_emails | array | List of email addresses found on the WHOIS record of the domain. |
dns_txt_emails | array |
List of email addresses found in the DNS TXT record for the domain. Note: These are the email addresses we find in the DNS TXT record on the _validation-contactemail subdomain of the domain being validated.For more information about using contacts from DNS TXT records for DCV checks, see the following topics:
|