API examples Imprimer

  • 0

Register Domain

This command is used to send a Register command to the registrar.

CALL

POST - /order/domains/register 

Request Parameters

Name Type Required? Description
domain text Yes Domain name
regperiod numeric Yes Registration period
domainfields text No Additional domain fields. This can be left empty
addons [ idprotection => numeric ] array No Enables dns management, email forwarding and/or id protection for this domain

nameservers

  [

text, #nameserver1 
text, #nameserver2 
text, #nameserver3
text, #nameserver4 
text, #nameserver5

]

array Yes nameserver1 and nameserver2 are required. nameserver3, nameserver4, nameserver5 are optional

contacts

[

registrant

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

],

tech

[

firstname => text, 
lastname => text, 
fullname => text,
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

billing

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

admin

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

array Yes Contact Details

Sample Register Domain Request

endpoint   = "https://dashboard.clouder.ma/modules/addons/DomainsReseller/api/index.php";
$action     = "/order/domains/register";
$params     = [
    "domain"    => "example.com",
    "regperiod" => "1",
    "nameservers" => [
      "nsa.yourdns.com",
      "nsb.yourdns.com",
      ],

    "contacts"  => [
        “registrant” => [
        "firstname" => "example",
        "lastname" => "testing",
        "fullname" => "example testing",
        "companyname"  => "textmachine",
        "email"  => "exam@gmail.com",
        "address1"  => "4 office",
        "address2"  => "",
        "city"  => "Lag",
        "state"  => "Lagos",
        "zipcode"  => "110001",
        "country"  => "Nigeria",
        "phonenumber" => "+234.812345678"
      ],
      “tech” => [
        "firstname" => "example",
        "lastname" => "testing",
        "fullname" => "example testing",
        "companyname"  => "textmachine",
        "email"  => "exam@gmail.com",
        "address1"  => "4 office",
        "address2"  => "",
        "city"  => "Lag",
        "state"  => "Lagos",
        "zipcode"  => "110001",
        "country"  => "Nigeria",
        "phonenumber" => "+234.87546898"
      ],
      “billing” => [
        "firstname" => "example",
        "lastname" => "testing",
        "fullname" => "example testing",
        "companyname"  => "textmachine",
        "email"  => "exam@gmail.com",
        "address1"  => "4 office",
        "address2"  => "",
        "city"  => "Lag",
        "state"  => "Lagos",
        "zipcode"  => "110001",
        "country"  => "Nigeria",
        "phonenumber" => "+234.812345678"
      ],
      “admin” => [
        "firstname" => "example",
        "lastname" => "testing",
        "fullname" => "example testing",
        "companyname"  => "textmachine",
        "email"  => "exam@gmail.com",
        "address1"  => "4 office",
        "address2"  => "",
        "city"  => "Lag",
        "state"  => "Lagos",
        "zipcode"  => "110001",
        "country"  => "Nigeria",
        "phonenumber" => "+234.812345678"
      ],
  ]

];

$headers = [

    "username: email@example.com",

    "token: ". base64_encode(hash_hmac("sha256""1234567890QWERTYUIOPASDFGHJKLZXCVBNM""email@example.com:".gmdate("y-m-d H")))

];

$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, "{$endpoint}{$action}");

curl_setopt($curl, CURLOPT_POST, true);

curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params));

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);

curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($curl);

curl_close($curl);

Transfer Domain

This command is used to send a Transfer command to the registrar

CALL

POST - /order/domains/transfer 

Request Parameters

Name Type Required? Description
domain text Yes Domain name
eppcode text Yes EPP code of the domain to be transferred
regperiod numeric Yes Registration period
addons [ idprotection => numeric ] array No Enables dns management, email forwarding and/or id protection for this domain

nameservers

  [

text, #nameserver1 
text, #nameserver2 
text, #nameserver3
text, #nameserver4 
text, #nameserver5

]

array Yes nameserver1 and nameserver2 are required. nameserver3, nameserver4, nameserver5 are optional

contacts

[

registrant

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

],

tech

[

firstname => text, 
lastname => text, 
fullname => text,
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

billing

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

admin

[

firstname => text, 
lastname => text, 
fullname => text, 
companyname => text, 
email => text, 
address1 => text, 
address2 => text, 
city => text, 
state => text, 
zipcode => text, 
country => text, 
phonenumber => text

]

array Yes Contact Details

 Sample Transfer Domain Request

endpoint   = "https://dashboard.clouder.ma/modules/addons/DomainsReseller/api/index.php";
$action     = "/order/domains/transfer;
$params     = [
    "domain"    => "example.com",
    "regperiod" => "3",
    "nameservers" => [
      "nsa.yourdns.com",
      "nsb.yourdns.com",
      ],

    "contacts"  => [
        “registrant” => [
        "firstname" => "example",
        "lastname" => "testing",
        "fullname" => "example testing",
        "companyname"  => "textmachine",
        "email"  => "exam@gmail.com",
        "address1"  => "4 office",
        "address2"  => "",
        "city"  => "Lag",
        "state"  => "Lagos",
        "zipcode"  => <span style="max-wid


Cette réponse était-elle pertinente?

« Retour