Check CAA (domain lock)
less than a minute
PUT
Use this endpoint to check a given domain’s DNS CAA resource record for a domain lock account token.https://www.digicert.com/services/v2/domain/{{domain_id}}/caa
If the correct token is found:
- The API returns a
statusvalue of1 - The domain’s lock status (
domain_locking_status) becomesenabled.
If the token is not found:
- The API returns a
statusvalue of0. - The domain’s lock status (
domain_locking_status) becomespending.
To learn how to place your account token, see Domain locking – Locking your domain, step 6.
Example requests and responses
cURL
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"
}Path parameters
| Name | Req/Opt | Description |
|---|---|---|
| domain_id | required | Domain ID. |
Request parameters
| Name | Req/Opt | Type | Description |
|---|---|---|---|
| account_token | required | string | Domain lock account token. To get the account token, use the Domain info API. |
Response parameters
| Name | Type | Description |
|---|---|---|
| status | string | Number that represents domain lock status. |
Was this page helpful?
Provide feedback