触发自定义通知事件。
请求参数
参数 | 类型 | 说明 | 必需的 |
---|---|---|---|
action | string | “TriggerNotificationEvent” | Required |
notification_identifier | string | 唯一标识符字符串,在制定通知规则时用作条件。 | Optional |
title | string | 通知的标题 | Optional |
message | string | 通知的消息正文 | Optional |
url | string | 通知的后续 URL | Optional |
status | string | 通知的状态说明 | Optional |
statusStyle | string | 通知状态的格式样式,目前支持“success”, “danger”, and “info” | Optional |
attributes | array | 要包含在通知中的属性数组。至少需要 label 和 value 参数。其他参数是可选的。请参阅 WHMCS\Notification\NotificationAttribute。 |
Optional |
响应参数
参数 | 类型 | 说明 |
---|---|---|
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' => 'TriggerNotificationEvent',
// See https://developers.whmcs.com/api/authentication
'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
'password' => 'SECRET_OR_HASHED_PASSWORD',
'notification_identifier' => 'custom.server.add',
'title' => 'New Server Added',
'message' => 'new-server.examplehost.com added as a cPanel server and is available for provisioning.',
'url' => 'https://whmcs.example.test/admin/configservers.php?action=manage&id=3',
'status' => 'Success',
'statusStyle' => 'info',
'attributes[0][label]' => 'example',
'attributes[0][value]' => 'example',
'attributes[0][url]' => 'https://whmcs.example.test/admin/configservers.php?action=manage&id=3',
'attributes[0][style]' => 'success',
'attributes[0][icon]' => 'example',
'responsetype' => 'json',
)
)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
示例请求(本地 API)
$command = 'TriggerNotificationEvent';
$postData = array(
'notification_identifier' => 'custom.server.add',
'title' => 'New Server Added',
'message' => 'new-server.examplehost.com added as a cPanel server and is available for provisioning.',
'url' => 'https://whmcs.example.test/admin/configservers.php?action=manage&id=3',
'status' => 'Success',
'statusStyle' => 'info',
'attributes[0][label]' => 'example',
'attributes[0][value]' => 'example',
'attributes[0][url]' => 'https://whmcs.example.test/admin/configservers.php?action=manage&id=3',
'attributes[0][style]' => 'success',
'attributes[0][icon]' => 'example',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later
$results = localAPI($command, $postData, $adminUsername);
print_r($results);
示例响应 JSON
{
"result": "success"
}
错误响应
可能的错误条件响应包括:
- API 通知事件需要传递一个标识符字符串。
- API 通知事件需要提供标题。
- API 通知事件需要提供消息。
相关用法
- PHP WHMCS TransliterateTicketText用法及代码示例
- PHP WHMCS TicketOpenAdmin用法及代码示例
- PHP WHMCS TicketFlagged用法及代码示例
- PHP WHMCS TicketAdminReply用法及代码示例
- PHP WHMCS TopLevelDomainAdd用法及代码示例
- PHP WHMCS TicketDelete用法及代码示例
- PHP WHMCS TopLevelDomainPricingUpdate用法及代码示例
- PHP WHMCS TicketMerge用法及代码示例
- PHP WHMCS TicketUserReply用法及代码示例
- PHP Thread::isJoined()用法及代码示例
- PHP WHMCS TicketOpenValidation用法及代码示例
- PHP WHMCS TicketOpen用法及代码示例
- PHP WHMCS TicketDeleteReply用法及代码示例
- PHP WHMCS TopLevelDomainUpdate用法及代码示例
- PHP WHMCS TicketStatusChange用法及代码示例
- PHP Threaded::merge()用法及代码示例
- PHP WHMCS TicketPiping用法及代码示例
- PHP Threaded::isWaiting()用法及代码示例
- PHP WHMCS TicketDepartmentChange用法及代码示例
- PHP WHMCS TicketSplit用法及代码示例
- PHP Threaded::notify()用法及代码示例
- PHP WHMCS TopLevelDomainDelete用法及代码示例
- PHP Threaded::isRunning()用法及代码示例
- PHP WHMCS TicketSubjectChange用法及代码示例
- PHP Threaded::notifyOne()用法及代码示例
注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 TriggerNotificationEvent。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。