Auto-renewal

PUT /v1/domains/{domain}/auto-renewal

Enable auto-renewal

Enable auto-renewal for a specific domain identified by its unique domain identifier.

Example
$ curl --header "Authorization: Bearer {token}" \
       --header "Accept: application/json" \
       --request PUT \
       https://api.checkdomain.de/v1/domains/{domain}/auto-renewal
Response
HTTP/1.1 204 No Content
Requirements
Name Type Required Description
domain integer (\d+) Domain identifier
Status-Codes
Code Description
204 No Content
404 Domain not found
406 Not acceptable
500 Something on our end went wrong
DELETE /v1/domains/{domain}/auto-renewal

Disable auto-renewal

Disable auto-renewal for a specific domain identified by its unique domain identifier.

Caution

Disabling the auto-renewal for any domain will result in the domain name being deleted at the end of your domain contract. Recovering your domain name can cause additonal costs.

Example
$ curl --header "Authorization: Bearer {token}" \
       --header "Accept: application/json" \
       --request DELETE \
       https://api.checkdomain.de/v1/domains/{domain}/auto-renewal
Response
HTTP/1.1 204 No Content
Requirements
Name Type Required Description
domain integer (\d+) Domain identifier
Status-Codes
Code Description
204 No Content
404 Domain not found
406 Not acceptable
500 Something on our end went wrong