nextgi/logicboxes-api

LogicBoxes API 平台的 PHP SDK。

dev-master 2021-02-14 22:47 UTC

This package is auto-updated.

Last update: 2024-09-27 20:40:20 UTC


README

此库设计用于与 LogicBoxes 架构操作的服务提供商一起使用。以下是一些例子:

可用的 API 请求

  • 操作
  • 账单
  • 联系人
  • 客户
  • Dns
  • 域名
  • 订单
  • 产品
    • 客户定价
    • 分销商定价
    • 活跃分销商促销

安装

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']);

原始贡献者

非常感谢 Ahmet Bora。此仓库基于他的 ResellerClub PHP SDK 仓库。