添加自动化

更新时间:2023-06-15 05:04:34

本文介绍添加自动化的 API。

接口描述

可添加不同条件或动作的自动化。条件个数上限10个,动作个数上限50个。

接口地址

POST: /v2.0/iot-03/automations

请求参数

body 说明

参数名类型参数位置是否必填说明
nameString true自动化名称
dslAutomationDsl true自动化规则语言
preconditionsPreconditions false自动化前置条件

preconditions 说明

参数名类型参数位置是否必填说明
trigger_typeString false触发类型。目前只有 timeCheck。
precondition_trigger_ruleObject false前置条件触发规则。见 precondition_trigger_rule 详细说明。

dsl 说明

参数名类型参数位置是否必填说明
conditionsList true自动化条件列表
conditions_ruleString true自动化条件匹配规则:
  • and:所有条件均成立
  • or:任意条件成立
actionsList true自动化动作列表

conditions 说明

参数名类型参数位置是否必填说明
trigger_typeString true触发类型:
  • deviceReport:设备上报触发
  • timer:定时触发
  • weather:天气触发
trigger_idString true条件触发 ID:
条件触发类型trigger_type为deviceReport时,trigger_id为设备 ID;
条件触发类型trigger_type为timer时,trigger_id固定为timer
条件触发类型trigger_type为weather时,trigger_id固定城市 ID。
trigger_ruleObject true条件触发规则。见trigger_rule详细说明
rule_numInteger true触发条件编号,用于条件匹配规则自定义条件计算。取值范围为1~条件的个数,且不能重复。

actions 说明

参数名类型参数位置是否必填说明
execution_typeString true执行类型:
  • deviceIssue:设备下发
  • deviceGroupIssue:设备群组下发
  • delay:延时动作
execution_ruleObject true执行规则。见 execution_rule 详细说明。

返回参数

参数名类型说明
resultString自动化 ID

请求示例

POST: /v2.0/iot-03/automations
{
  "name": "这是一个自动化",
  "dsl": {
    "conditions": [
      {
        "trigger_type": "deviceReport",
        "trigger_id": "vdevo16292691746****",
        "trigger_rule": {
          "status_code": "switch_led",
          "comparator": "==",
          "status_value": true
        },
        "rule_num": 1
      },
      {
        "trigger_type": "timer",
        "trigger_id": "timer",
        "trigger_rule": {
          "timer_format": "18:00 11 09 * 2021"
        },
        "rule_num": 2
      },
      {
        "trigger_type": "weather",
        "trigger_id": "101069444120988****",
        "trigger_rule": {
          "weather_code": "temp",
          "comparator": "==",
          "weather_value": 20
        },
        "rule_num": 3
      }
    ],
    "conditions_rule": "or",
    "actions": [
      {
        "execution_type": "delay",
        "execution_rule": {
          "delay_seconds": 60
        }
      },
      {
        "execution_type": "deviceIssue",
        "execution_rule": {
          "execution_id": "vdevo16292691746****",
          "function_code": "bright_value",
          "function_value": 20
        }
      },
      {
        "execution_type": "deviceGroupIssue",
        "execution_rule": {
          "execution_id": "144790134147200****",
          "function_code": "switch_1",
          "function_value": true
        }
      }
    ]
  },
  "preconditions": {
    "trigger_type": "timeCheck",
    "precondition_trigger_rule": {
      "timer_format": "09:00-23:00 * * 0,1,2,3 *"
    }
  }
}

返回示例

{
    "result": "WeapZf6D1qI6****",
    "t": 1635426480637,
    "success": true
}

错误码

参考 错误码

trigger_rule详细说明

1、当 trigger_type 为deviceReport时:

参数名类型说明必填
status_codeString设备指令
comparatorString比较符
status_valueObject设备指令值

2、当 trigger_type 为timer时:

参数名类型说明必填
timer_formatString定时触发时间。支持两种格式:
  • 指定日期定时,格式为: [hour:min] [day of month] [month] [day of week] [year],例如:20:00 20 10 * 2021(2021年10月20号晚上8点)
  • 按周循环定时,格式为: [hour:min] [day of month] [month] [day of week] [year],例如:20:00 * * 0,1,2,3 *(每周日、周一、周二、周三晚上8点)

3、当trigger_type为weather时:

参数名类型说明必填
weather_codeString天气码
comparatorString比较符
weather_valueObject天气码值

execution_rule详细说明

1、当execution_type为delay时:

参数名类型说明必填
delay_secondsLong延时时间,取值范围 1~5 * 60 * 60,单位:秒

2、当execution_type为deviceIssue或deviceGroupIssue时:

参数名类型说明必填
execution_idString设备或设备群组 ID
function_codeString设备或设备群组指令码
function_valueObject设备或设备群组指令值

precondition_trigger_rule 详细说明

参数名类型描述必填
timer_formatString定时格式。格式为: [hour:min]-[hour:min] [day of month] [month] [day of week] [year],例如: 9:30-18:00 * * 0,1,2,3,4,5,6 * (每周上午9点半到下午6点)