# 群信息变更 - 40013
群信息被变更,机器人感知到后,通过该回调将信息返回给商家
encoding_content解密后的结构:
{
"event_type": 40013,
"robot_id": "机器人id",
"group_id": "群id",
"group_name": "群名称",
"owner_account_id": "群主id",
"created_at": "建群时间",
"in_contact": true,
"is_watch": true,
"admin_account_list" : ["管理员id"],
"member_count": 10,
"group_notice":"群公告"
}
说明
字段 | 类型 | 说明 |
---|---|---|
event_type | int | 事件类型,40013 |
robot_id | string | 机器人id |
group_id | string | 群id |
group_name | string | 群名称 |
owner_account_id | string | 群主id |
created_at | string | 建群时间,格式:2021-05-04T20:26:51+08:00 |
in_contact | bool | 是否在机器人通讯录中 |
is_watch | bool | 机器人是否关注群 |
admin_account_list | array | 管理员列表 |
member_count | int | 群人数 |
group_notice | string | 群公告 |