# 设置机器人分组

请求方式:POST

请求地址:https://$basehost/gateway/eaopen/SetRobotCategory

body参数

{
	"robot_id_list": ["xxx","xxx"],
	"category_id": 1
}
字段 类型 必填 说明
robot_id_list array 机器人id列表
category_id id 机器人分组id

返回值:

{
    "errcode": 0,
    "errmsg": "",
    "hint": "vwS9S99xyhcjaANddysA"
}

返回说明

字段 类型 说明
errcode int 状态码,0为正常,非0代表错误
errmsg string 错误信息
hint string 请求日志ID

完整请求示例:

curl -X POST https://$basehost/gateway/eaopen/SetRobotCategory \
     -H 'Content-Type: application/json; charset=UTF-8' \
     -H 'Token: c2NdxDHKXIJ5j1zrhJeq2eJEHjh9xxx' \
     -d '{
            "robot_id_list": ["xxx","xxx"],
            "category_id":  1
         }'
最后更新时间: 2024/11/6 16:43:02