Skip to content

PHP SDK for ResellerClub API. Currently all of the domains, contacts and customers API are available.

License

Notifications You must be signed in to change notification settings

urielmx/resellerclub-php-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Many thanks to Ahmet Bora. This repository based on his ResellerClub PHP SDK repository.

Installation

composer.json:

"repositories": [
      {
          "type": "vcs",
          "url":  "https://github.com/amirkhiz/resellerclub-php-api.git"
      }
  ],
  "require": {
    "amirkhiz/resellerclub-php-api": "dev-master"
  }

Usage

Note: All functions return raw response from ResellerClubs's API. (This will change in the future)

$resellerClub = new \habil\ResellerClub\ResellerClub('<userId>', '<apiKey>', true); // Last argument is for testMode.

// Get Available TLDs
$resellerClub->domains()->getTLDs();

// Check Domain Availability
$resellerClub->domains()->available(['google', 'example'], ['com', 'net']); // This will check google.com, google.net, example.com and example.net

Currently all of the domains, contacts and customers API are available.

About

PHP SDK for ResellerClub API. Currently all of the domains, contacts and customers API are available.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%