Turn on WHOIS privacy and transfer lock
Hide your contact details from WHOIS and stop anyone transferring a domain away while it is locked.
In the dashboard
Two switches protect a domain registered with Coritan. WHOIS privacy hides your contact details from public WHOIS lookups. The transfer lock makes the registry refuse transfer requests from other registrars. A new registration starts with the transfer lock on, and with WHOIS privacy on if you chose it when you registered.
Before you begin
Section titled Before you beginThe domain must be registered with Coritan, and its registration must be active (Statuses).
Change the switches
Section titled Change the switches- In the dashboard, go to Websites, open the domain and select the Settings tab.
- In the Domain options card:
- Turn WHOIS privacy on to hide your contact details, or off to show them.
- Turn Transfer lock on to refuse transfers, or off before you move the domain to another registrar.
Result
Section titled ResultThe dashboard confirms each change. The Registration card shows WHOIS privacy as On or Off and Transfer lock as Locked or Unlocked, and the Websites list shows the WHOIS privacy and Locked badges.
Keep the transfer lock on unless you are moving the domain. Transfer a domain to another registrar explains when to turn it off.
Troubleshooting
Section titled TroubleshootingCould not save the WHOIS privacy settingorCould not save the Transfer lock setting- The change did not reach the registry. The registration may not be
active, or the registry did not answer. Try again later. Failed to update WHOIS privacy: …orFailed to update lock: …- The registry refused the change. Contact support if it keeps failing.
Related
Section titled RelatedWith the API
Section titled With the APIBoth calls take enabled:
curl -X PUT https://api.coritan.com/api/v1/domains/registrations/7/whois-privacy \
-H "Authorization: Bearer $CORITAN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"enabled": true}'
{"message": "WHOIS privacy enabled", "domain": "example.com"}
curl -X PUT https://api.coritan.com/api/v1/domains/registrations/7/lock \
-H "Authorization: Bearer $CORITAN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"enabled": false}'
{"message": "Domain unlocked", "domain": "example.com"}
Both answer 404 with Registration not found when the registration is not yours or not active.
API operations on this page
| Method | Path | What it does |
|---|---|---|
PUT | /api/v1/domains/registrations/{reg_id}/whois-privacy | Toggle WHOIS privacy for a domain |
PUT | /api/v1/domains/registrations/{reg_id}/lock | Lock or unlock a domain |