Enable auto-renewal
Enable auto-renewal for a specific domain identified by its unique domain identifier.
$ curl --header "Authorization: Bearer {token}" \
--header "Accept: application/json" \
--request PUT \
https://api.checkdomain.de/v1/domains/{domain}/auto-renewal
HTTP/1.1 204 No Content
Name | Type | Required | Description |
---|---|---|---|
domain | integer (\d+) | Domain identifier |
Code | Description |
---|---|
204 | No Content |
404 | Domain not found |
406 | Not acceptable |
500 | Something on our end went wrong |
Disable auto-renewal
Disable auto-renewal for a specific domain identified by its unique domain identifier.
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.
$ curl --header "Authorization: Bearer {token}" \
--header "Accept: application/json" \
--request DELETE \
https://api.checkdomain.de/v1/domains/{domain}/auto-renewal
HTTP/1.1 204 No Content
Name | Type | Required | Description |
---|---|---|---|
domain | integer (\d+) | Domain identifier |
Code | Description |
---|---|
204 | No Content |
404 | Domain not found |
406 | Not acceptable |
500 | Something on our end went wrong |