Introduction
General presentation of the OVHcloud public API for domain names
General presentation of the OVHcloud public API for domain names
Last updated 5th May 2022
Before reading this documentation, make sure you have read the following page. It describes the test environment setup and the OVHcloud API connection process, and also helps understanding requests signature.
We have released SDKs for several languages, to help you use the API:
var client = require("ovh")({
endpoint: "ovh-eu",
appKey: APPLICATION_KEY,
appSecret: APPLICATION_SECRET,
consumerKey: APPLICATION_CONSUMER_KEY,
});
import ovh
client = ovh.Client(
endpoint = 'ovh-eu',
application_key = APPLICATION_KEY,
application_secret = APPLICATION_SECRET,
consumer_key = APPLICATION_CONSUMER_KEY,
)
package main
import (
"fmt"
"github.com/ovh/go-ovh/ovh"
)
func main() {
client, err := ovh.NewClient(
"ovh-eu",
APPLICATION_KEY,
APPLICATION_SECRET,
APPLICATION_CONSUMER_KEY,
)
if err != nil {
fmt.Printf("Error: %q\n", err)
return
}
}
We are going to use the following terms throughout this documentation.
.fr
belongs to Afnic, .com
and .net
to Verisign..com
and .net
are gTLDs..fr
for France, .io
for the British Indian Ocean territory (though it is frequently used by web applications, because of the acronym I/O meaning Input/Output).Bevor Sie Ihre Meinung abgeben, nehmen wir gerne Ihre Vorschläge auf, wie wir diese Dokumente verbessern können.
Woran liegt es? An den Bildern, dem Inhalt oder Aufbau der Anleitungen? Schreiben Sie es uns gerne, dann machen wir es zusammen besser.
Ihre Support-Anfragen werden in diesem Formular nicht entgegengenommen. Verwenden Sie hierfür bitte das Formular "Ein Ticket erstellen" .
Vielen Dank. Ihr Feedback wurde gesendet.
Besuchen Sie Ihren Community-Bereich und tauschen Sie sich mit anderen Mitgliedern der OVHcloud Community aus. Hier können Sie Fragen stellen, zusätzliche Informationen finden und eigene Inhalte veröffentlichen.
Tauschen Sie sich mit der Community aus