场景自动化

更新时间:2023-05-22 06:38:12下载pdf

API 列表

请求方式
API 描述
GET /v1.1/homes/{home_id}/scenes 查询家庭下的场景列表
GET /v1.0/scenes/default-pictures 查询默认场景图片列表
POST /v1.0/homes/{home_id}/scenes/{scene_id}/trigger 触发场景
POST /v1.0/homes/{home_id}/scenes 添加场景
DELETE /v1.0/homes/{home_id}/scenes/{scene_id} 删除场景
PUT /v1.0/homes/{home_id}/scenes/{scene_id} 修改场景
GET /v1.0/homes/{home_id}/scene/devices 查询家庭下支持场景的设备列表
GET /v1.0/devices/{device_id}/enable-linkage/codes 获取设备支持的联动条件
POST /v1.0/devices/{device_id}/scenes/{scene_id} 场景绑定
DELETE /v1.0/devices/{device_id}/scenes/{scene_id} 场景解绑
GET /v1.0/devices/{device_id}/scenes 查询设备已绑定的场景列表
POST /v1.0/homes/{home_id}/automations 添加自动化
PUT /v1.0/homes/{home_id}/automations
/{automation_id}
修改自动化
DELETE /v1.0/homes/{home_id}/automations
/{automation_id}
删除自动化
GET /v1.1/homes/{home_id}/automations 查询自动化列表
GET /v1.0/homes/{home_id}/automations
/{automation_id}
查询家庭下的某个自动化
POST /v1.0/homes/{home_id}/automations
/{automation_id}/conditions/trigger
触发家庭下某个自动化的外部条件
GET /v1.0/homes/{home_id}/automation
/devices
查询家庭下支持自动化的设备列表
GET /v1.0/homes/automation/weather/conditions 查询自动化支持的天气条件
GET /v1.0/homes/{home_id}/enable-linkage/codes 查询家庭下支持的动作列表
PUT /v1.0/homes/{home_id}/automations
/{automation_id}/actions/enable
启用自动化
PUT /v1.0/homes/{home_id}/automations
/{automation_id}/actions/disable
停用自动化

查询家庭下的场景列表

接口描述

查询家庭下的场景列表。

接口地址

GET /v1.1/homes/{home_id}/scenes

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 家庭 ID

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Object 返回结果。

Result

参数名 类型 说明
scene_id String 场景 ID
name String 场景名称
background String 背景图片
enabled Boolean 是否启用
status String 状态。1:正常,2:失效
actions List 动作列表

Actions

参数名 类型 说明
entity_id String 设备 ID。
executor_property JSON 执行动作参数。
action_executor String 执⾏动作类别,当前仅支持 dpIssue

请求示例

GET /v1.1/homes/5270711/scenes

返回示例

{
    "success":true,
    "t":1541071460239,
    "result":[
        {
            "scene_id":"53IYSXI3gEn2w3Oc",
            "enabled": true,
            "status":"1",
            "name":"开启球泡灯",
            "background":"https://images.tuyacn.com/smart/rule/cover/starry.png",
            "actions":[
                {
                    "entity_id":"0120090568c63a89****",
                    "executor_property":{
                        "work_mode":"scene_2"
                    },
                    "action_executor":"dpIssue"
                }
            ]
        },
        {
            "scene_id":"DKgx28KbdPfz****",
            "name":"早上",
            "background":"https://images.tuyacn.com/smart/rule/cover/****.png",
            "actions":[
                {
                    "entity_id":"012000715ccf7f4f****",
                    "executor_property":{
                        "switch_led":true
                    },
                    "action_executor":"dpIssue"
                }
            ]
        }
    ]
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

查询默认场景图⽚列表

接口描述

查询默认场景图⽚列表。

接口地址

GET /v1.0/scenes/default-pictures

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result List 返回场景图⽚地址列表。

请求示例

GET /v1.0/scenes/default-pictures

返回示例

{
   "success":true,
   "t":1541071460239,
   "result":[
       "https://images.tuyacn.com/smart/rule/cover/starry.png",
       "https://images.tuyacn.com/smart/rule/cover/sport.png"
   ]
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

触发场景

接口描述

触发执行某个场景。

接口地址

POST /v1.0/homes/{home_id}/scenes/{scene_id}/trigger

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 家庭 ID
scene_id String URI 场景 ID

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Object 场景场景触发是否成功,成功返回 true

请求示例

POST /v1.0/homes/242****/scenes/53IYSXI3gEn2w3Oc/trigger

返回示例

{
 "success": true,
 "t": 1541072348540,
 "result": true
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

删除场景

接口描述

删除家庭下的某个场景。

接口地址

DELETE /v1.0/homes/{home_id}/scenes/{scene_id}

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 家庭 ID
scene_id String URI 场景 ID

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Object 场景删除成功,返回true

请求示例

DELETE /v1.0/homes/242****/scenes/53IYSXI3gEn2****

返回示例

{
 "success": true,
 "t": 1541072348540,
 "result": true
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

添加场景

接口描述

给某个家庭下添加场景。

接口地址

POST /v1.0/homes/{home_id}/scenes

请求参数

参数名 类型 参数类型 说明 必填
home_id String URI 家庭 ID
name String Body 场景名称
background String Body 背景图片
actions List Body 动作列表

Action中设备相关说明

参数名 类型 说明 必填
entity_id String 目标 ID。
executor_property JSON 执⾏动作参数。
action_executor String 执⾏动作类别。

Action相关说明

  • 设备动作

    • entity_id:设备 ID
    • action_executor:dpIssue
    • executor_property:标准指令
  • 延时动作

    • entity_id:设备 ID
    • action_executor:delay
    • executor_property:延时参数
  • 禁用自动化

    • entity_id:自动化 ID
    • action_executor:ruleDisable
    • executor_property:不填
  • 启用自动化

    • entity_id:自动化 ID
    • action_executor:ruleEnable
    • executor_property:不填

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Object 场景 ID。

请求示例

POST /v1.0/homes/242****/scenes
{
    "name":"添加场景测试",
    "background":"https://images.tuyacn.com/smart/rule/cover/sport.png",
    "actions":[
        {
             "executor_property":{
                  "hours":"0",
                  "minutes": "0",
                  "seconds": "5"
              },
             "action_executor":"delay"
        },
        {
            "executor_property":{
                "work_mode":"scene_2"
            },
            "action_executor":"dpIssue",
            "entity_id":"0120090568c63a89****"
        },
	{
                    "action_executor": "ruleDisable",
                    "entity_id": "AYJV2hh3eqm3****"
         },
	{
                    "action_executor": "ruleEnable",
                    "entity_id": "AYJV2hh3eqm3****"
         }
    ]
}

返回示例

{
 "success": true,
 "t": 1541072348540,
 "result":"53IYSXI3gEn2****"
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

修改场景

接口描述

修改某个家庭下的场景。

接口地址

PUT /v1.0/homes/{home_id}/scenes/{scene_id}

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 家庭 ID
scene_id String Body 场景 ID
name String Body 场景名称
background String Body 背景图片
actions List Body 动作列表

Action 中设备相关说明

参数名 类型 说明 必填
entity_id String 设备 ID。
executor_property JSON 执⾏动作参数。
action_executor String 执⾏动作类别,例如,dpIssue

Action 中延时相关说明

参数名 类型 说明 必填
executor_property JSON 执⾏动作参数。
action_executor String 执⾏动作类别,例如,delay

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Object 修改成功返回 true

请求示例

PUT /v1.0/homes/242****/scenes/53IYSXI3gEn2****    
{
    "name":"添加场景测试",
    "background":"https://images.tuyacn.com/smart/rule/cover/sport.png",
    "actions":[
    	{
            "executor_property":{
                "hours":"0",
                "minutes":"0",
                "seconds":"5"
            },
            "action_executor":"delay"
        },
        {
            "executor_property":{
                "work_mode":"scene_2"
            },
            "action_executor":"dpIssue",
            "entity_id":"0120090568c63a89****"
        }
    ]
}

返回示例

{
 "success": true,
 "t": 1541072348540,
 "result": true
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

查询家庭下支持场景的设备列表

接口描述

查询家庭下支持场景的设备列表。

接口地址

GET /v1.0/homes/{home_id}/scene/devices

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result List 返回结果。

Result

参数名 类型 说明
device_id String 设备编号
uuid String 设备唯一标识
name String 名称
home_id String 家庭 ID
product_id String 产品 ID

请求示例

GET /v1.0/homes/2422121/scene/devices

返回成功示例

{
    "result":[
    	{
    		"id":"vedo123****",
    		"uuid":"asdfghnbvcx****",
        	"name":"测试设备",
    		"product_id":"r4567543****",
    		"home_id":"242****"
    	}
    ],
    "success":true,
    "t":1572936751228
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

场景绑定

接口描述

接口主要适用于场景开关设备。场景开关有相应的开关按钮,每个开关按钮拥有相应的指令。通过该接口,可以将指定的开关指令与场景进行绑定,即场景开关与场景进行关联操作。绑定成功后,通过指令下发接口,可以直接触发场景。

接口地址

POST /v1.0/devices/{device_id}/scenes/{scene_id}

请求参数

参数名 类型 参数类型 说明 必填
scene_id String URI 场景 ID
device_id String URI 设备 ID
code String Body 标准指令 Code
value String BODY 指令入参范围

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Long 房间 ID,room_id

Result

参数名 类型 说明
Success Boolean 执行成功或失败

请求示例

POST /v1.0/devices/vdevo1575XXXX00013095/scenes/EqFkQ79XXXXXtjlkTm
{
	"code":"scene_1",
	"value":"scene"
}

返回示例

{
    "result": {
        "success": true
    },
    "success": true,
    "t": 1575972372805
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

场景解绑

接口描述

接口主要适用于场景开关设备。场景开关中的某个开关与指定场景绑定后,可通过该接口进行解绑。

接口地址

DELETE /v1.0/devices/{device_id}/scenes/{scene_id}

请求参数

参数名 类型 参数类型 说明 必填
device_id String URI 设备 ID
scene_id String URI 场景 ID
code String BODY 标准指令 Code,该值与场景开关按钮一一对应。

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Long 房间 ID,room_id

Result

参数名 类型 说明
Success Boolean 执行成功或失败

请求示例

DELETE /v1.0/devices/vdevo1575XXXX00013095/scenes/EqFkQ79XXXXXtjlkTm
{
	"code":"scene_1"
}

返回示例

{
    "result": {
        "success": true
    },
    "success": true,
    "t": 1575972372805
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

查询设备已绑定的场景列表

接口描述

接口主要适用于场景开关设备。通过场景开关设备 ID,查询该设备所关联的场景列表。

接口地址

GET /v1.0/devices/{device_id}/scenes

请求参数

参数名 类型 参数类型 说明 必填
device_id String URI 设备 ID

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功为空。
result Long 房间 ID,room_id

Result

参数名 类型 说明
device_id Boolean 设备 ID
scenes Object 已绑定的场景列表

Scenes

参数名 类型 说明
scene_id String 场景 ID。
name String 场景名称。
code String 绑定指令。场景的开关设备,一个开关对应一个标准指令。
value Object 指令入参范围。

请求示例

GET /v1.0/devices/vdevo15758XXXX13095/scenes

返回示例

{
    "result": {
        "device_id": "vdevo15758XXXX13095",
        "scenes": [
            {
                "code": "scene_2",
                "name": "添加场景G测试-关灯",
                "scene_id": "ilCZllmbXXXPOY36",
                "value": "scene"
            },
            {
                "code": "scene_1",
                "name": "灯泡开场景",
                "scene_id": "EqFkQ79uXXXjlkTm",
                "value": "scene"
            }
        ]
    },
    "success": true,
    "t": 1576036860284
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误
1106 权限非法

添加自动化

接口描述

为家庭添加自动化功能。

接口地址

POST /v1.0/homes/{home_id}/automations

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID。
name String Body 自动化名称。
background String Body 背景图片。
conditions List Body 条件列表。
actions List Body 动作列表。
match_type Integer Body 匹配类型:
  • 1:任意条件满足触发。
  • 2:全部条件满足触发。
  • 3:自定义条件触发,需设定相关逻辑运算参数condition_rule
condition_rule String String 自定义条件规则,当匹配类型 match_type=3,该参数必填。自定义条件规则遵从与或运算公式。每个自动化条件以其order_num为标识码。
preconditions List Body 前置条件,优先级最高。

说明: 例如,condition_ruleorder_num 依次为 1,2 和 3,业务场景为:条件 1 与 2 同时满足,或者条件 3 满足的情况下触发自动化,则表达式为:1&&2||3

Conditions

参数名 类型 说明 必填
entity_type Integer 条件类型。目前支持以下类型:
  • 设备状态条件: entity_type=1
  • 外部条件: entity_type=15
  • 天气条件:entityType=3
  • 定时条件: entity_type=6
display JSON 条件展示。
order_num Integer 条件排序,从 1 开始。
entity_id String 执行动作实体:
  • entity_type=1 :取值为设备 ID,必填。
  • entity_type=15:取值由系统自动生成。
  • entit_type=3:取值为对应城市的 ID。
  • entity_type=6:取值固定为 timer

Display 设备状态条件说明

参数名 类型 说明 必填
code String 设备的 statusCode
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String Code 的取值。

Display 外部条件说明

参数名 类型 说明 必填
code String 外部条件的 Key。
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value Object 外部条件的 Key 对应 Code 的取值。

Display 天气条件说明

参数名 类型 说明 必填
code String 天气条件对应的 Key,例如温度 temp
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String 天气条件对应的 Key 对应 Code 的取值。

Display 定时条件说明

参数名 类型 说明 必填
date String 触发日期,格式为yyyyMMdd,例如20191125
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
time String 触发时间,24 小时制,示例:14:00
timezone_id String 时区 ID,示例:Asia/Shanghai

Preconditions 说明

前置限制条件,目前支持时间段限制。

参数名 类型 说明 必填
cond_type String 当前仅支持时间段限制,固定为timeCheck
display JSON 条件展示。

Preconditions 中 Display 说明

参数名 类型 说明 必填
start String 开始时间,默认为当天的某个时间点,24小时制。示例:10:00
end String 结束时间,24小时制。示例:22:00
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
timezone_id String 时区 ID,示例:Asia/Shanghai

Action相关说明

参数名 类型 说明 必填
entity_id String 目标 ID。
executor_property JSON 执行动作参数。
action_executor String 执行动作类别。
  • 设备动作

    • entity_id:设备 ID
    • action_executor :dpIssue
    • executor_property:标准指令
  • 禁用自动化,

    • entity_id:自动化id
    • action_executor:ruleDisable
    • executor_property:不填
  • 启用自动化

    • entity_id:自动化id
    • action_executor:ruleEnable
    • executor_property:不填
  • 触发场景

    • entity_id:场景 ID
    • action_executo:ruleTrigger
    • executor_property:不填

请求示例

POST /v1.0/homes/242****/automations
{
    "conditions":[
        {
            "display":{
                "code":"switch_1",
                "operator":"==",
                "value":true
            },
            "entity_id":"vdevo15725982542****",
            "entity_type":1,
            "order_num":1
        }
    ],
    "actions":[
    {
                "action_executor":"delay",
                "executor_property":{
    			  "hours": "0",
    			  "minutes": "0",
    			  "seconds": "5"
                }
            },
        {
            "action_executor":"dpIssue",
          	"entity_id":"vdevo15725982542****",
            "executor_property":{
			  "switch_1": true
            }
        }
    ],
    "background":"https://images.tuyacn.com/smart/rule/cover/bedroom.png",
    "match_type":1,
    "name":"测试自动化"
}

前置条件示例

{
    "preconditions":[
        {
            "display":{
                "start":"10:00",
                "end":"12:00",
                "loops":"0010000",
                "timezone_id":"Asia/Shanghai"
            },
            "cond_type":"timeCheck"
        }
    ]
}

设备状态条件示例

{
    "conditions":[
        {
            "display":{
                "code":"switch_1",
                "operator":"==",
                "value":true
            },
            "entity_id":"vdevo15725982542****",
            "entity_type":1,
            "order_num":1
        }
    ]
}

外部条件示例

{
    "conditions":[
        {
            "display":{
                "code":"test",
                "operator":"==",
                "value":"test"
            },
            "entity_type":15,
            "order_num":1
        }
    ]
}

天气条件示例

{
  "conditions":[
        {
            "display":{
                "code":"temp",
                "operator":"==",
                "value":"20"
            },
            "entity_id":"10",
            "entity_type":3,
            "order_num":1
        }
    ]
}

定时条件示例

{
  "conditions":[
        {
            "display":{
                "date":"20200301",
                "loops":"0000000",
                "time":"14:00",
                "timezone_id":"Asia/Shanghai"
            },
            "entity_id":"timer",
            "entity_type":6,
            "order_num":1
        }
    ]
}

外部动作示例

{
    "actions":[
        {
            "action_executor":"externalAction",
            "executor_property":{
              //自定义,将通过消息队列推送
            }
        }
    ]
}

Code 的数据类型和操作符的映射说明

type operator
Boolean “==”
Integer “>”,“==”,“<”
Enum “==”

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result String 自动化 ID。

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result":"53IYSXI3gEn2w3Oc"
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

修改自动化

接口描述

修改家庭的自动化配置。

接口地址

PUT /v1.0/homes/{home_id}/automations/{automation_id}

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID
automation_id String URI 自动化 ID。
name String Body 自动化名称。
background String Body 背景图片。
conditions List Body 条件列表。
actions List Body 动作列表。
match_type Integer Body 匹配类型:
  • 1:任意条件满足触发。
  • 2:全部条件满足触发。
  • 3:自定义条件触发,需设定相关逻辑运算参数condition_rule
condition_rule String String 自定义条件规则,当匹配类型 match_type=3,该参数必填。自定义条件规则遵从与或运算公式。每个自动化条件以其 order_num 为标识码。
preconditions List Body 前置条件,优先级最高。

说明: 例如,condition_ruleorder_num 依次为 1,2 和 3,业务场景为:条件 1 与 2 同时满足,或者条件 3 满足的情况下触发自动化,则表达式为:1&&2||3

Conditions

参数名 类型 说明 必填
entity_type Integer 条件类型。目前支持以下类型:
  • 设备状态条件: entity_type=1
  • 外部条件: entity_type=15
  • 天气条件:entity_type=3
  • 定时条件: entity_type=6
display JSON 条件展示。
order_num Integer 条件排序,从 1 开始。
entity_id String 执行动作实体:
  • entity_type=1 :取值为设备 ID,必填。
  • entity_type=15:取值由系统自动生成。
  • entit_type=3:取值为对应城市的 ID。
  • entity_type=6:取值固定为 timer

Display 设备状态条件说明

参数名 类型 说明 必填
code String 设备的 statusCode
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String Code 的取值。

Display 外部条件说明

参数名 类型 说明 必填
code String 外部条件的 Key。
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value Object 外部条件的 Key 对应 Code 的取值。

Display 天气条件说明

参数名 类型 说明 必填
code String 天气条件对应的 Key,例如温度 temp
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String 天气条件对应的 Key 对应 Code 的取值。

Display 定时条件说明

参数名 类型 说明 必填
date String 触发日期,格式为yyyyMMdd,例如20191125
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
time String 触发时间,24 小时制,示例:14:00
timezone_id String 时区 ID,示例:Asia/Shanghai

Preconditions 说明

前置限制条件,目前支持时间段限制。

参数名 类型 说明 必填
cond_type String 当前仅支持时间段限制,固定为timeCheck
display JSON 条件展示。

Preconditions 中 Display 说明

参数名 类型 说明 必填
start String 开始时间,默认为当天的某个时间点,24小时制。示例:10:00
end String 结束时间,24小时制。示例:22:00
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
timezone_id String 时区 ID,示例:Asia/Shanghai

Actions 设备说明

参数名 类型 说明 必填
entity_id String 设备 ID。
executor_property JSON 执行动作参数。
action_executor String 执行动作类别,固定为 dpIssue

Actions 外部动作说明

参数名 类型 说明 必填
executor_property JSON 自定义外部动作。
action_executor String 执行动作类别,固定为 externalAction

Actions 延时说明

参数名 类型 说明 必填
executor_property JSON 执行动作参数。
action_executor String 执行动作类别,固定为 delay

请求示例

PUT /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc
{
            "actions":[
               {
                                   "action_executor":"delay",
                                   "executor_property":{
                                   	"hours":"0",
                                   	"minutes": "0",
                                   	"seconds": "5"
                                   }
                                
                               },
                {
                    "action_executor":"dpIssue",
                    "entity_id":"vdevo157259825422309",
                    "executor_property":{
                    	"switch_1":true
                    }
                 
                },
              	{
                    "action_executor":"externalAction",
                    "executor_property":{
                    	// 用户自定义
                    }
                 
                }
            ],
          
            "background":"https://images.tuyacn.com/smart/rule/cover/bedroom.png",
            "conditions":[
               
               {
                    "display":{
                        "code":"switch_1",
                        "operator":"==",
                        "value":true
                    },
                    "entity_id":"vdevo157259825422309",
                    "entity_type":1,
                    "order_num":1
                },
                {
                    "display":{
                        "code":"mode",
                        "operator":"==",
                        "value":1
                    },
                    "entity_type":15,
                    "order_num":2
                }
            ],
            "match_type":1,
            "name":"测试自动化"
        }

前置条件示例

{
    "preconditions":[
        {
            "display":{
                "start":"10:00",
                "end":"12:00",
                "loops":"0000000",
                "timezone_id":"Asia/Shanghai"
            },
            "cond_type":"timeCheck"
        }
    ]
}

设备状态条件示例

{
    "conditions":[
        {
            "display":{
                "code":"switch_1",
                "operator":"==",
                "value":true
            },
            "entity_id":"vdevo157259825422309",
            "entity_type":1,
            "order_num":1
        }
    ]
}

外部条件示例

{
    "conditions":[
        {
            "display":{
                "code":"test",
                "operator":"==",
                "value":"test"
            },
            "entity_type":15,
            "order_num":1
        }
    ]
}

天气条件示例

{
  "conditions":[
        {
            "display":{
                "code":"temp",
                "operator":"==",
                "value":"20"
            },
            "entity_id":"10",
            "entity_type":3,
            "order_num":1
        }
    ]
}

定时条件示例

{
  "conditions":[
        {
            "display":{
                "date":"20200301",
                "loops":"0000000",
                "time":"14:00",
                "timezone_id":"Asia/Shanghai"
            },
            "entity_id":"timer",
            "entity_type":6,
            "order_num":1
        }
    ]
}

外部动作示例

{
    "actions":[
        {
            "action_executor":"externalAction",
            "executor_property":{
              //自定义,将通过消息队列推送
            }
        }
    ]
}

延时动作示例

{
   "action_executor":"delay",
   "executor_property":{
    "hours":"0",
    "minutes": "0",
    "seconds": "5"
   }

}

Code的数据类型和操作符的映射说明

type operator
Boolean “==”
Integer “>”,“==”,“<”
Enum “==”

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result String 修改成功返回 true

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result": true
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

删除自动化

接口描述

删除家庭的自动化配置。

接口地址

DELETE /v1.0/homes/{home_id}/automations/{automation_id}

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID
automation_id String URI 自动化 ID

请求示例

DELETE /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功时为空。
t Long 返回 13 位时间戳。
result String 自动化删除是否成功,成功返回 true

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result":true
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

查询自动化列表

接口描述

查询自动化列表。

接口地址

GET /v1.1/homes/{home_id}/automations

请求参数

参数名 类型 参数类型 说明 必须
home_id Long URI 用户家庭 ID

请求示例

GET /v1.1/homes/242****/automations

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result List 返回结果。

Result

参数名 类型 说明
automation_id String 自动化 ID。
name String 自动化名称。
enabled Boolean 启用状态。
status String 状态。1:正常,2:失效
background String 背景图片。
conditions List 条件列表。
preconditions List 前置条件。
actions List 动作列表。
match_type Integer 匹配类型:
  • 1:任意条件满足触发。
  • 2:全部条件满足触发。
  • 3:自定义条件触发,需设定相关逻辑运算参数condition_rule
condition_rule String 自定义条件规则,当匹配类型 match_type=3,该参数必填。自定义条件规则遵从与或运算公式。每个自动化条件以其order_num为标识码。

Conditions

参数名 类型 说明 必填
entity_type Integer 条件类型。目前支持以下类型:
  • 设备状态条件: entity_type=1
  • 外部条件: entity_type=15
  • 天气条件:entity_type=3
  • 定时条件: entity_type=6
display JSON 条件展示。
order_num Integer 条件排序,从 1 开始。
entity_id String 执行动作实体:
  • entity_type=1 :取值为设备 ID,必填。
  • entity_type=15:取值由系统自动生成。
  • entit_type=3:取值为对应城市的 ID。
  • entity_type=6:取值固定为 timer

Display 设备状态条件说明

参数名 类型 说明 必填
code String 设备的 statusCode
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String Code 的取值。

Display 外部条件说明

参数名 类型 说明 必填
code String 外部条件的 Key。
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value Object 外部条件的 Key 对应 Code 的取值。

Display 天气条件说明

参数名 类型 说明 必填
code String 天气条件对应的 Key,例如温度 temp
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String 天气条件对应的 Key 对应 Code 的取值。

Display 定时条件说明

参数名 类型 说明 必填
date String 触发日期,格式为yyyyMMdd,例如20191125
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
time String 触发时间,24 小时制,示例:14:00
timezone_id String 时区 ID,示例:Asia/Shanghai

Preconditions 说明

前置限制条件,目前支持时间段限制。

参数名 类型 说明 必填
cond_type String 当前仅支持时间段限制,固定为timeCheck
display JSON 条件展示。

Preconditions 中 Display 说明

参数名 类型 说明 必填
start String 开始时间,默认为当天的某个时间点,24小时制。示例:10:00
end String 结束时间,24小时制。示例:22:00
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
timezone_id String 时区 ID,示例:Asia/Shanghai

Actions 设备说明

参数名 类型 说明 必填
entity_id String 设备 ID。
executor_property JSON 执行动作参数。
action_executor String 执行动作类别,固定为 dpIssue

Actions 外部动作说明

参数名 类型 说明 必填
executor_property JSON 自定义外部动作。
action_executor String 执行动作类别,固定为 externalAction

Code的数据类型和操作符的映射说明

type operator
Boolean “==”
Integer “>”,“==”,“<”
Enum “==”

返回成功示例

{
    "result":[
        {
            "actions":[
                {
                   "action_executor":"delay",
                   "executor_property":{
                    "hours":"0",
                    "minutes": "0",
                    "seconds": "5"
                   }
                
                },
                {
                    "action_executor":"dpIssue",
                    "entity_id":"vdevo157259825422309",
                    "executor_property":{
                        "switch_1":true
                    }
                },
              	{
                    "action_executor":"externalAction",
                    "executor_property":{
                    	// 用户自定义
                    }
                 
                }
            ],
            "automation_id":"p2aWOkEOe2RzATHL",
            "background":"https://images.tuyacn.com/smart/rule/cover/bedroom.png",
            "conditions":[
                {
                    "display":{
                        "code":"switch_1",
                        "operator":"==",
                        "value":true
                    },
                    "entity_id":"vdevo157259825422309",
                    "entity_type":1,
                    "order_num":1
                }
            ],
            "enabled": true,
            "status": "1",
            "match_type":1,
            "name":"测试自动化"
        },
        {
            "automation_id":"L07BQVabdqwFPT9K",
            "background":"https://images.tuyacn.com/smart/rule/cover/house6.png",
            "conditions":[
                {
                    "display":{
                        "code":"battery_percentage",
                        "operator":"<",
                        "value":255
                    },
                    "entity_id":"vdevo156958314001174",
                    "entity_type":1,
                    "order_num":1
                },
                {
                    "display":{
                        "code":"mode",
                        "operator":"==",
                        "value":1
                    },
                    "entity_id":"weqszcaokqlmlkmlcanqklwokljlaf",
                    "entity_type":15,
                    "order_num":2
                }
            ],
            "enabled": true,
            "match_type":1,
            "name":"自动化测试1"
        }
    ],
    "success":true,
    "t":1572936751228
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

查询单个自动化

接口描述

查询家庭中单个自动化场景。

接口地址

GET /v1.0/homes/{home_id}/automations/{automation_id}

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID
automation_id String URI 自动化场景 ID

请求示例

GET /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result Object 返回结果。

Result

参数名 类型 说明
automation_id String 自动化场景 ID。
name String 自动化场景名称。
enabled Boolean 启用状态。
background String 背景图片。
conditions List 条件列表。
preconditions List 前置条件。
actions List 动作列表。
match_type Integer 匹配类型:
  • 1:任意条件满足触发。
  • 2:全部条件满足触发。
  • 3:自定义条件触发,需设定相关逻辑运算参数condition_rule
condition_rule String 自定义条件规则,当匹配类型 match_type=3,该参数必填。自定义条件规则遵从与或运算公式。每个自动化条件以其order_num为标识码。

Conditions

参数名 类型 说明 必填
entity_type Integer 条件类型。目前支持以下类型:
  • 设备状态条件: entity_type=1
  • 外部条件: entity_type=15
  • 天气条件:entity_type=3
  • 定时条件: entity_type=6
display JSON 条件展示。
order_num Integer 条件排序,从 1 开始。
entity_id String 执行动作实体:
  • entity_type=1 :取值为设备 ID,必填。
  • entity_type=15:取值由系统自动生成。
  • entit_type=3:取值为对应城市的 ID。
  • entity_type=6:取值固定为 timer

Display 设备状态条件说明

参数名 类型 说明 必填
code String 设备的 statusCode
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String Code 的取值。

Display 外部条件说明

参数名 类型 说明 必填
code String 外部条件的 Key。
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value Object 外部条件的 Key 对应 Code 的取值。

Display 天气条件说明

参数名 类型 说明 必填
code String 天气条件对应的 Key,例如温度 temp
operator String 操作符,参见 Code的数据类型和操作符的映射说明
value String 天气条件对应的 Key 对应 Code 的取值。

Display 定时条件说明

参数名 类型 说明 必填
date String 触发日期,格式为yyyyMMdd,例如20191125
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
time String 触发时间,24 小时制,示例:14:00
timezone_id String 时区 ID,示例:Asia/Shanghai

Preconditions 说明

前置限制条件,目前支持时间段限制。

参数名 类型 说明 必填
cond_type String 当前仅支持时间段限制,固定为timeCheck
display JSON 条件展示。

Preconditions 中 Display 说明

参数名 类型 说明 必填
start String 开始时间,默认为当天的某个时间点,24小时制。示例:10:00
end String 结束时间,24小时制。示例:22:00
loops String 由 0 和 1 组成的 7 位数字。0 表示不执行,1 表示执行。第 1 位为周日,依次表示周一至周六。例如,0011000表示每周二,周三执行。
timezone_id String 时区 ID,示例:Asia/Shanghai

Actions 设备说明

参数名 类型 说明 必填
entity_id String 设备 ID。
executor_property JSON 执行动作参数。
action_executor String 执行动作类别,固定为 dpIssue

Actions 外部动作说明

参数名 类型 说明 必填
executor_property JSON 自定义外部动作。
action_executor String 执行动作类别,固定为 externalAction

Code的数据类型和操作符的映射说明

type operator
Boolean “==”
Integer “>”,“==”,“<”
Enum “==”

返回成功示例

{
    "result":[{
            "actions":[
                {
                   "action_executor":"delay",
                   "executor_property":{
                    "hours":"0",
                    "minutes": "0",
                    "seconds": "5"
                   }
                
                },
                {
                    "action_executor":"dpIssue",
                    "entity_id":"vdevo157259825422309",
                    "executor_property":{
                        "switch_1":true
                    }
                },
                {
                    "action_executor":"externalAction",
                    "executor_property":{
                        // 用户自定义
                    }
                 
                }
            ],
            "automation_id":"p2aWOkEOe2RzATHL",
            "background":"https://images.tuyacn.com/smart/rule/cover/bedroom.png",
            "conditions":[
                {
                    "display":{
                        "code":"switch_1",
                        "operator":"==",
                        "value":true
                    },
                    "entity_id":"vdevo157259825422309",
                    "entity_type":1,
                    "order_num":1
                }
            ],
            "enabled": true,
            "match_type":1,
            "name":"测试自动化"
        },
        {
            "automation_id":"L07BQVabdqwFPT9K",
            "background":"https://images.tuyacn.com/smart/rule/cover/house6.png",
            "conditions":[
                {
                    "display":{
                        "code":"battery_percentage",
                        "operator":"<",
                        "value":255
                    },
                    "entity_id":"vdevo156958314001174",
                    "entity_type":1,
                    "order_num":1
                },
                {
                    "display":{
                        "code":"mode",
                        "operator":"==",
                        "value":1
                    },
                    "entity_id":"weqszcaokqlmlkmlcanqklwokljlaf",
                    "entity_type":15,
                    "order_num":2
                }
            ],
            "enabled": true,
            "match_type":1,
            "name":"自动化测试1"
        },
    "success":true,
    "t":1572936751228
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

触发自动化外部条件

接口描述

触发家庭中自动化场景的外部条件。

接口地址

POST /v1.0/homes/{home_id}/automations/{automation_id}/conditions/trigger

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID
automation_id String URI 自动化场景 ID
conditions List Body 条件列表

Conditions

参数名 类型 说明 必填
entity_id String 外部条件对应 ID
display JSON 条件

Display

参数名 类型 说明 必填
code String 设备的 statusCode
value String Code 的取值

请求示例

POST /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc/conditions/trigger

[{
	"entity_id":"c9a5a524-d973-4b59-9390-0dcda0f172ec",
	"display":{
		"code":"test",
		"value":"test"
	}
}]

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result String 场景触发是否成功,成功返回 true

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result": true
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

查询支持自动化场景的设备列表

接口描述

查询家庭下支持自动化场景的设备列表。

接口地址

GET /v1.0/homes/{home_id}/automation/devices

请求参数

参数名 类型 参数类型 说明 必填
home_id Long URI 用户家庭 ID
type String URL 支持的类型:
  • condition:条件类型
  • action:动作类型

说明:不输出type 参数即返回所有支持自动化场景的设备。

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result List 返回结果。

Result

参数名 类型 说明
device_id String 设备编号
uuid String 设备唯一标识
name String 名称
home_id String 家庭 ID
product_id String 产品 ID

请求示例

GET /v1.0/homes/242****/automation/devices?type=condition

返回成功示例

{
    "result":[
    	{
    		"id":"vedo123****",
    		"uuid":"asdfghnbvcx****",
        "name":"测试设备",
    		"product_id":"r4567543****",
    		"home_id":"242****"
    	}
    ],
    "success":true,
    "t":1572936751228
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

查询自动化场景支持的天气条件

接口描述

查询自动化支持的天气条件

接口地址

GET /v1.0/homes/automation/weather/conditions

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result List 返回结果。

Result

参数名 类型 说明
category String 类别
category_name String 类别名称
operators String 操作符
property JSON 类别属性

请求示例

GET /v1.0/homes/automation/weather/conditions

返回成功示例

{
    "result":[
    		{
    			"category":"temp",
    			"category_name":"温度",
    			"operators":"[\"<\",\"==\",\">\"]",
    			"property":{
                    "unit": "℃",
                    "min": -40,
                    "max": 40,
                    "step": 1,
                    "type": "value"
                },
    		}
    ],
    "success":true,
    "t":1572936751228
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

获取家庭支持的联动条件

接口描述

根据家庭 ID 获取联动条件或执行动作的标准功能点。

接口地址

GET /v1.0/homes/{home_id}/enable-linkage/codes

请求参数

参数名 类型 参数类型 说明 必填
home_id String URI 家庭 ID

请求示例

GET /v1.0/homes/5232322/enable-linkage/codes

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功时为空。
t Long 返回 13 位时间戳。
result List 返回结果。

Result

参数名 类型 说明
device_id String 自动化设备 ID。
functions List 执行的操作。
status List 操作触发的条件。

Functions

参数名 类型 说明
code String 标准下发指令 Code。
name String Code 名称。
type String 下发数据类型。目前支持以下三种类型:
  • Boolean
  • Integer
  • Enum
values JSON Code 对应的取值范围。

Status

参数名 类型 说明
code String 标准上报状态 Code。
name String Code 名称。
type String 上报数据类型,目前支持以下三种类型:
  • Boolean
  • Integer
  • Enum
values JSON Code 对应的取值范围。

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result": [
                {
                  "device_id": "0120090568c63a89cb34",
                  "functions": [
                      {
                          "name": "亮度",
                          "code": "bright_value",
                          "type": "Integer",
                          "values": {
                                        "max":255,
                                        "min":25,
                                        "scale":0,
                                        "step":1,
                                        "type":"value",
                                        "unit":""
                                    }
                      },
                      {
                        "name": "开关",
                        "code": "switch_led",
                        "type": "Boolean"
                    }
                  ],
                  "status": [
                      {
                          "name": "模式",
                          "code": "work_mode",
                          "type": "Enum",
                          "values":  {
                                        "range": [
                                                    "white",
                                                    "colour",
                                                    "scene",
                                                    "scene_1",
                                                    "scene_2",
                                                    "scene_3",
                                                    "scene_4"
                                                ],
                                         "type": "Enum"
                                    }
                      }
                  ]
                }
            ]
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

获取设备支持的联动条件

接口描述

根据设备 ID 获取联动条件或执行动作的标准功能点。

接口地址

GET /v1.0/devices/{device_id}/enable-linkage/codes

请求参数

参数名 类型 参数类型 说明 必填
device_id String URI 设备 ID

请求示例

GET /v1.0/devices/0120090568c63a89cb34/enable-linkage/codes

返回参数

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,成功时为空。
t Long 返回 13 位时间戳。
result Object 返回结果。

Result

参数名 类型 说明
device_id String 设备 ID。
functions List 执行动作的标准指令。
status List 触发动作的标准状态。

Functions

参数名 类型 说明
code String 标准下发指令 Code。
name String Code 名称。
type String 下发数据类型,目前支持以下三种类型:
  • Boolean
  • Integer
  • Enum
values JSON Code 对应的取值范围。

Status

参数名 类型 说明
code String 标准上报状态 Code。
name String Code 名称。
type String 上报数据类型,目前支持以下三种类型:
  • Boolean
  • Integer
  • Enum
values JSON Code 对应的取值范围。

返回成功示例

{
    "success": true,
    "t": 1541072348540,
    "result": {
                  "device_id": "0120090568c63a89cb34",
                  "functions": [
                      {
                          "name": "亮度",
                          "code": "bright_value",
                          "type": "Integer",
                          "values": {
                                        "max":255,
                                        "min":25,
                                        "scale":0,
                                        "step":1,
                                        "type":"Integer",
                                        "unit":""
                                    }
                      },
                      {
                        "name": "开关",
                        "code": "switch_led",
                        "type": "Boolean",
                        "values": {
                                    "type": "Boolean"
                                  }
                    }
                  ],
                  "status": [
                      {
                          "name": "模式",
                          "code": "work_mode",
                          "type": "Enum",
                          "values":  {
                                        "range": [
                                                    "white",
                                                    "colour",
                                                    "scene",
                                                    "scene_1",
                                                    "scene_2",
                                                    "scene_3",
                                                    "scene_4"
                                                ],
                                         "type": "Enum"
                                    }
                      }
                  ]
            }
}

返回失败示例

{
    "success": false,
    "code": 1100,
    "msg": "param is empty",
    "t": 1540954683193
}

启用自动化

接口描述

启用自动化场景。

接口地址

PUT /v1.0/homes/{home_id}/automations/{automation_id}/actions/enable

请求参数

参数名 类型 参数类型 说明 是否必需
home_id Long 家庭 ID URI
automation_id String 自动化场景 ID URI

返回参数:

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result Boolean 返回结果。

请求示例

PUT /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc/actions/enable

返回示例

{
    "success": true,
    "t": 1541072348540,
    "result": true
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误

停用自动化

接口描述

停用自动化场景。

接口地址

PUT /v1.0/homes/{home_id}/automations/{automation_id}/actions/disable

请求参数

参数名 类型 参数类型 说明 是否必需
home_id Long 家庭 ID URI
automation_id String 自动化场景 ID URI

返回参数:

参数名 类型 说明
code Integer 响应码,参见全局错误码
success Boolean 是否成功:
  • true:成功
  • false:失败
msg String 请求失败的信息,请求成功时为空。
t Long 返回 13 位时间戳。
result Boolean 返回结果。

请求示例

PUT /v1.0/homes/242****/automations/53IYSXI3gEn2w3Oc/actions/disable

返回示例

{
    "success": true,
    "t": 1541072348540,
    "result": true
}

错误码

以下为该接口常见的业务异常,更多的异常错误,请参见全局错误码

错误码 说明
500 系统错误