title | excerpt | updated |
---|---|---|
Configure the Display of Contact Data in the Whois |
Use the OVHcloud public API to configure the display of your contact data in the Whois |
2022-05-05 |
[!primary]
To follow this guide, make sure you are connected to OVHcloud API. You may find more information on the API introduction page if needed.
- Introduction
- Order a Domain Name
- Tasks Management
- Manage Contacts of a Domain Name
- Managing Eligibility Rules
- Configure the Display of Contact Data in the Whois
- Configure the DNS of your Domain Name
- Transfer a Domain Name
The Whois is a search service that provides information about a domain name. This information can have various uses but is often used to find and contact the owner of a domain name. This information is displayed as a non-standardized text, which was displayed in plain text until recently.
RDAP was designed as a successor to Whois and has several advantages over it, including:
- Support for internationalization
- Standardization of the data format
- The ability to provide distinguished access to the data
This section is dedicated to API routes used to set up the disclosure and obfuscation of the various contact data of a domain name in the Whois and the RDAP.
Since the implementation of the RGPD, the Whois data concerning admin
, tech
, billing
and owner
contacts are hidden by default
if they are natural persons.
However, it is possible to disclose some or all of the data according the optin rules applied to the domain name.
The following API allows you to retrieve the disclosure rules applicable to a domain name.
[!api]
@api {v1} /domain GET /domain/{serviceName}/rules/optin
Parameter | Required | Description |
---|---|---|
serviceName |
true | The domain name involved |
[!tabs] Response example
[ { "type": "tech", "fields": [] }, { "type": "owner", "fields": [ "address", "city", "country", "email", "fax", "name", "organisation", "phone", "province", "zip" ] } ]
The following response shows the three different types of rules that can be found:
- The
admin
contact is omitted in the response, which means that it is not possible to configure the disclosure of its data. - The
tech
contact with an emptyfield
table means that it is possible to disclose its information. However, the choice of the disclosed information is not customizable (it is all or nothing). - The
owner
contact has the most customizable rule. The list in thefield
node indicates that it is possible to choose from it the fields that will be disclosed in the Whois.
The following API is used to retrieve the disclosure configuration applied to a domain name.
[!api]
@api {v1} /domain GET /domain/{serviceName}/configurations/optin
Parameter | Required | Description |
---|---|---|
serviceName |
true | The domain name involved |
[!tabs] Response example
[ { "type": "tech", "fields": [] }, { "type": "owner", "fields": ["email", "phone"] } ]
The above response can be read as follows:
- The
admin
andbilling
contacts are not included in the response, which means that no information about them will be displayed in the Whois. - The
tech
contact with an empty array in thefields
field means that the contact's information must be disclosed and will be displayed in the Whois. - About the
owner
contact, we can see that only theemail
andphone
are configured to be disclosed and will be displayed in the Whois.
The following API allows you to update the disclosure configuration applied to a domain name.
[!api]
@api {v1} /domain PUT /domain/{serviceName}/configurations/optin
Parameter | Required | Default | Description |
---|---|---|---|
serviceName |
true | The domain name involved | |
optin (body) |
true | [] | Disclosure configuration |
[!tabs] Request example
[ { "type": "tech", "fields": [] }, { "type": "owner", "fields": ["email", "phone"] } ]Response example
[ { "type": "tech", "fields": [] }, { "type": "owner", "fields": ["email", "phone"] } ]
Beyond the disclosure of data on the Whois, OVHcloud gives the possibility to obfuscate the email addresses of the contacts in the Whois.
Since the implementation of the RGPD, this feature is activated by default for all domains. However, it is possible to disable this obfuscation depending on the domain name.
The following API allows to know the email obfuscation rules that apply on a domain name.
[!api]
@api {v1} /domain GET /domain/{serviceName}/rules/emailsObfuscation
Parameter | Required | Description |
---|---|---|
serviceName |
true | The domain name involved |
[!tabs] Response example
[ "admin", "tech", "billing", "owner" ]
The answer above indicates that email addresses can be obfuscated on the admin
, tech
, billing
and owner
contacts.
The following API allows to retrieve the obfuscation configuration applied on a domain name.
[!api]
@api {v1} /domain GET /domain/{serviceName}/configurations/obfuscatedEmails
Parameter | Required | Description |
---|---|---|
serviceName |
true | The domain name involved |
[!tabs] Response example
[ { "value": "[email protected]", "type": "admin", "status": "todo" }, { "value": "[email protected]", "type": "tech", "status": "done" }, { "value": "[email protected]", "type": "owner", "status": "done" } ]
The above response can be read as follows:
- The
billing
contact is not present in the response, which means that no email obfuscation is applied to this contact. - The
tech
andowner
contacts have astatus
atdone
and a non-zerovalue
, this indicates that both of these contacts have their email obfuscated using this value and the email redirection is active. - About the
admin
contact, we can see that thevalue
exists but that thestatus
is attodo
, which means that the contact is configured to be obfuscated but the email address redirection is not yet active.
The following API allows to update the email obfuscation configuration applied on a domain name.
[!api]
@api {v1} /domain PUT /domain/{serviceName}/configurations/obfuscatedEmails
Parameter | Required | Default | Description |
---|---|---|---|
serviceName |
true | The domain name involved | |
contacts (body) |
true | [] | List of contact types on which obfuscation must be applied |
[!tabs] Request example
[ "tech", "admin", "owner" ]Response example
[ { "value": "[email protected]", "type": "tech" }, { "value": "[email protected]", "type": "admin" }, { "value": "[email protected]", "type": "owner" } ]
The following API allows you to regenerate obfuscated emails of a domain name.
[!api]
@api {v1} /domain POST /domain/{serviceName}/configurations/obfuscatedEmails/refresh
Parameter | Required | Default | Description |
---|---|---|---|
serviceName |
true | The domain name involved | |
contacts (body) |
true | [] | List of contact types on which obfuscation must be regenerated |
[!tabs] Request example
[ "tech", "admin", "owner" ]Response example
Status 200