当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


PHP WHMCS CreateClientInvite用法及代码示例

发送邀请以管理客户。

请求参数

参数 类型 说明 必需的
action string “CreateClientInvite” Required
client_id string 邀请的客户 ID Required
email int 要邀请的电子邮件地址 Required
permissions string 逗号分隔的权限列表。 Required

响应参数

参数 类型 说明
result string 操作结果:成功或错误

示例请求 (CURL)

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
    http_build_query(
        array(
            'action' => 'CreateClientInvite',
            // See https://developers.whmcs.com/api/authentication
            'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
            'password' => 'SECRET_OR_HASHED_PASSWORD',
            'client_id' => '1',
            'email' => '[email protected]',
            'permissions' => 'products,manageproducts,managedomains,tickets',
            'responsetype' => 'json',
        )
    )
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

示例请求(本地 API)

$command = 'CreateClientInvite';
$postData = array(
    'client_id' => '1',
    'email' => '[email protected]',
    'permissions' => 'products,manageproducts,managedomains,tickets',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later

$results = localAPI($command, $postData, $adminUsername);
print_r($results);

示例响应 JSON

{
    "result": "success"
}

错误响应

可能的错误条件响应包括:

  • 电子邮件是必需的
  • 无效的客户 ID
  • 输入的电子邮件地址无效
  • 需要用户权限
  • 用户已与客户端关联

相关用法


注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 CreateClientInvite。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。