# 新群聊 - 20002

该回调用于新增群聊通知,当机器人被好友邀请进群,会收到该事件回调

encoding_content解密后的结构

{
    "event_type": 20002,
    "robot_id": "机器人id",
    "group_id": "群id",
    "name": "群名",
    "owner_name": "群主名称",
    "is_watch": false,
    "group_created_at": 1697683401
}

说明

字段 类型 说明
event_type int 事件类型,20002
robot_id string 机器人id
group_id string 群id
name string 群名
owner_name string 群主名称
is_watch bool 是否关注
group_created_at int 群创建时间(unixtime)单位秒
最后更新时间: 2023/10/19 10:44:22