{
"type": "createGroupRequestNew",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"memberWxIdList": [
"string"
]
}
}
curl --location --request POST 'http://localhost:10001/api/processor' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "createGroupRequestNew",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"memberWxIdList": [
"string"
]
}
}'
{
"code": 200,
"data": {
"avatarUrl": "https://wx.qlogo.cn/mmcrhead/FiaIW3HsXzg6ia4DEAglQUBUiaWEcpFXlsf8w3xEc",
"data": {
"data": [
"wxid_xxxxx",
"wxid_xxxxx",
"wxid_xxxxx"
]
},
"groupId": "xxxxx@chatroom",
"groupMemberCount": 4,
"groupName": "",
"isManager": 1,
"managerWxId": "wxid_xxxxx"
},
"description": "创建群聊成功",
"time": 1730863312196
}