通知组

Notification group(通知组)指事件发生时,要通过电子邮件或短信通知的用户组。通知组在概念上类似于邮寄列表。  管理员可以在 Cog menu(配置菜单) 中选择 Administration(帐户管理),然后选择 Notification groups(通知组)来管理通知组。

为了演示如何使用通知组,请先创建通知组,其键值为 temperature_high_event_group。  有关如何创建通知组的更多信息,请参见添加通知组。例如,当管理门户通过触发器或 API 收到请求,要求向键值为 temperature_high_event_group 的通知组发送电子邮件或短信时,就会生成具有以下结构的 JSON 文件。

向通知组发送电子邮件:

{
    "1" : {
        "command" : "email.send",
        "params" : {
            "to" : "temperature_high_event_group",
            "from" : "real_user@example.com",
            "subject" : "Hello World!",
            "body" : "This is an email message sent by the API."
        }
    }
}

向通知组发送短信 

{
    "1": {
        "command": "twilio.sms.send",
        "params": {
            "to": "temperature_high_event_group",
            "body": "hello from deviceWISE"
        }
    }
}

确保通知组中的每个用户配置都包含有效的电话号码。如果存在没有电话号码的配置,则不会收到短信。

用户可以自行管理其对公开通知组的访问权限,请参见编辑通知组。 

具体内容


此节包含下列页面: