Use this endpoint to check a given domain's DNS CAA resource record for a domain lock account token.
If the correct token is found:
status
value of 1
.domain_locking_status
) becomes enabled
.If the token is not found:
status
value of 0
.domain_locking_status
) becomes pending
.To learn how to place your account token, see Domain locking – Locking your domain, step 6.
curl --request PUT 'https://www.digicert.com/services/v2/domain/{{domain_id}}/caa' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_token": {{account_token}}
}'
{
"status": "1"
}
{
"status": "0"
}
Name | Req/Opt | Description |
---|---|---|
domain_id | required | Domain ID. |
Name | Req/Opt | Type | Description |
---|---|---|---|
account_token | required | string | Domain lock account token. To get the account token, use the Domain info API. |
Name | Type | Description |
---|---|---|
status | string |
Number that represents domain lock status.
|