API Introduction

Endpoint
https://hub.aryanict.com/modules/addons/DomainsReseller/api/index.php
Authorization
  • UsernameHub account email address.

Token

The token is an API Key transformed into SHA256 hash using your email address and the current time encoded with base64.

base64_encode(hash_hmac("sha256", "<api-key>", "<email>:<gmdate("y-m-d H")>)"))

Example
$endpoint   = "https://hub.aryanict.com/modules/addons/DomainsReseller/api/index.php";
$action     = "/order/domains/renew";
$params     = [
    "domain"    => "example.com",
    "regperiod" => "3",
    "addons"    => [
        "dnsmanagement"     => 0,
        "emailforwarding"   => 1,
        "idprotection"      => 1,
    ]
];
$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);
  • 5 Users Found This Useful
Was this answer helpful?

Related Articles

API Actions

POST - /order/domains/register - Register Domain domaintype: text validators: required,...

Example Code (PHP)

<?php $data = array( "action" => "RegisterDomain", "token" =>...

SMS API

PHP Version: Prerequisite: 1)      PHP 4 >= 4.3.0, PHP 5, PHP 7 2)      For server need...

SMS API for Softwares

In Action: You need a unique ApplicationId (You can collect from support team). //$appID can be...

SMS API for Softwares v2

In Action:   You need a unique ApplicationId  Username (You can collect from support team)....