nextgi / logicboxes-api
PHP SDK for the LogicBoxes API platform.
dev-master
2021-02-14 22:47 UTC
Requires
- ext-curl: *
- ext-json: *
- ext-simplexml: *
- guzzlehttp/guzzle: *
This package is auto-updated.
Last update: 2024-10-27 20:49:05 UTC
README
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
Installation
composer require nextgi/logicboxes-api
Usage Example
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']);
Original Contributor
Many thanks to Ahmet Bora. This repository based on his ResellerClub PHP SDK repository.