This library is designed to work with providers that operate on the LogicBoxes architecture. Some include:
Available API requests:
- Actions
- Billing
- Contacts
- Customers
- Dns
- Domains
- Orders
- Products
- Customer Pricing
- Reseller Pricing
- Active Reseller Promotions
composer require nextgi/logicboxes-api
use nextgi\LogicBoxes\ResellerApi;
// In our example, we are using ResellerClub. Provider make no difference if they use LogicBoxes.
$registrar = new ResellerApi('<userId>', '<apiKey>');
$registrar->domains()->available(['google', 'example'], ['com', 'net']);
Many thanks to Ahmet Bora. This repository based on his ResellerClub PHP SDK repository.