Initial qiwei secondary development handoff

This commit is contained in:
2026-06-23 21:11:20 +08:00
commit 858cb68f4f
207 changed files with 52782 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"type": "addVWorkCardUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"corpId": "string",
"fromUserId": "string",
"verify": "string"
}
}
{
"type":11121,
"data":{
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}",
"from_user_id":"{{params.fromUserId}}",
"verify":"{{params.verify}}"
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "addVWorkDeletedUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"corpId": "string",
"verify": "string"
}
}
{
"type":11152,
"data":{
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}",
"verify":"{{params.verify}}"
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "addVWorkFriendRequestFromGroup",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"userId": "string",
"corpId": "string",
"verify": "string"
}
}
{
"type":11071,
"data":{
"room_conversation_id":"{{params.conversationId}}",
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}",
"verify":"{{params.verify}}"
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "addVWorkSearchUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"openId": "string",
"wxTicket": "string",
"verify": "string"
}
}
{
"type":11053,
"data":{
"user_id":"{{params.userId}}",
"openid":"{{params.openId}}",
"wx_ticket":"{{params.wxTicket}}",
"verify":"{{params.verify}}"
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "addVWorkSearchVWorkUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"corpId": "string",
"ticket": "string",
"verify": "string"
}
}
{
"type":11088,
"data":{
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}",
"ticket": "{{params.ticket}}",
"verify":"{{params.verify}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "agreeVWorkUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"corpId": "string"
}
}
{
"type":11064,
"data":{
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}"
}
}

View File

@@ -0,0 +1,22 @@
{
"type": "c2cCdnDown",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"fileType": 2,
"fileSize": 0,
"aesKey": "string",
"fileId": "string",
"savePath": "string"
}
}
{
"type":11170,
"data":{
"aes_key":"{{params.aesKey}}",
"file_id":"{{params.fileId}}",
"save_path":"{{params.savePath}}",
"file_size":968802,
"file_type":"{{params.fileType}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "c2cCdnUpload",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"fileType": 2,
"filePath": "string"
}
}
{
"type":11115,
"data":{
"file_path":"{{params.filePath}}",
"file_type":"{{params.fileType}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "changeVWorkGroupNameRequest",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"name": "string"
}
}
{
"type":11059,
"data":{
"conversation_id":"{{params.conversationId}}",
"name":"{{params.name}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "changeVWorkUserCompany",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"company": "string"
}
}
{
"type":11057,
"data":{
"user_id":"{{params.userId}}",
"company":"{{params.company}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "changeVWorkUserDesc",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"desc": "string"
}
}
{
"type": 11055,
"data": {
"user_id": "{{params.userId}}",
"desc": "{{params.desc}}"
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "changeVWorkUserPhone",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"phoneList": [
"string"
]
}
}
{
"type": 11056,
"data": {
"phone_list": "{{params.phoneList}}",
"user_id": "{{params.userId}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "changeVWorkUserRemark",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"remark": "string"
}
}
{
"type":11054,
"data":{
"user_id":"{{params.userId}}",
"remark":"{{params.remark}}"
}
}

View File

@@ -0,0 +1,15 @@
{
"type": "createVWorkEmptyGroupRequest",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"memberUserIdList": [
"string"
]
}
}
{
"type":11125,
"data":{
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "createVWorkGroupRequest",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"memberUserIdList": [
"string"
]
}
}
{
"type": 11058,
"data": "{{params.memberUserIdList}}"
}

View File

@@ -0,0 +1,18 @@
{
"type": "delVWorkMembersRequest",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"userList": [
"string"
]
}
}
{
"type": 11061,
"data": {
"user_list": "{{params.userList}}",
"conversation_id": "{{params.conversationId}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "deleteVWorkUser",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string",
"corpId": "string"
}
}
{
"type":11111,
"data":{
"user_id":"{{params.userId}}",
"corp_id":"{{params.corpId}}"
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "dissolveGroupVWork",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string"
}
}
{
"type":11130,
"data":{
"room_conversation_id":"{{params.conversationId}}"
}
}

View File

@@ -0,0 +1,11 @@
{
"type": "getCurrentAccountInfo",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以"
}
}
{
"type": 11035,
"data": {}
}

View File

@@ -0,0 +1,12 @@
{
"type": "getVWorkAccountListRequest",
"params": {
"status": 1
}
}
{
"data": {
"status": 1
},
"type": 10003
}

View File

@@ -0,0 +1,16 @@
{
"type": "getVWorkExternalFriendList",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"pageNum": 1,
"pageSize": 10
}
}
{
"type":11037,
"data":{
"page_num":"{{params.pageNum}}",
"page_size":"{{params.pageSize}}"
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "getVWorkFriendInfo",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"userId": "string"
}
}
{
"type": 11039,
"data": {
"user_id": "{{params.userId}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "getVWorkGroupList",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"pageNum": 1,
"pageSize": 10
}
}
{
"type": 11038,
"data": {
"page_num": "{{params.pageNum}}",
"page_size": "{{params.pageSize}}"
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "getVWorkGroupMemberList",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"pageNum": 1,
"pageSize": 0,
"conversationId": "string"
}
}
{
"type": 11040,
"data": {
"conversation_id": "{{params.conversationId}}",
"page_num":"{{params.pageNum}}",
"page_size":"{{params.pageSize}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "getVWorkInternalFriendList",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"pageNum": 1,
"pageSize": 10
}
}
{
"type": 11036,
"data": {
"page_num": "{{params.pageNum}}",
"page_size": "{{params.pageSize}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "groupInvitationVWorkConfirmationStatus",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"status": 0
}
}
{
"type":11089,
"data":{
"room_conversation_id":"{{params.conversationId}}",
"status":"{{params.status}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "groupNameVWorkChangeStatus",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"status": 0
}
}
{
"type":11108,
"data":{
"room_conversation_id":"{{params.conversationId}}",
"status":"{{params.status}}"
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "inviteVWorkMembersRequest",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"userList": [
"string"
]
}
}
{
"type": 11060,
"data": {
"user_list": "{{params.userList}}",
"conversation_id": "{{params.conversationId}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "pushVWorkGroupNotice",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"notice": "string"
}
}
{
"type":11082,
"data":{
"room_conversation_id":"{{params.conversationId}}",
"notice":"{{params.notice}}"
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "quitGroupVWork",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string"
}
}
{
"type":11105,
"data":{
"room_conversation_id":"{{params.conversationId}}"
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "searchVWorkUserInfo",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"keyword": "string"
}
}
{
"type": 11052,
"data": {
"keyword": "{{params.keyword}}"
}
}

View File

@@ -0,0 +1,34 @@
{
"type": "sendVWorkAppletMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"app": "gh_52b46203a658@app",
"appId": "wx35f2a3937c9df889",
"appName": "test",
"appIcon": "string",
"title": "string",
"url": "pages/index/index.html",
"fileId": "string",
"aesKey": "string",
"md5": "string",
"size": "string"
}
}
{
"type":11162,
"data":{
"conversation_id":"{{params.conversationId}}",
"username":"{{params.app}}",
"appid":"{{params.appId}}",
"appname":"{{params.appName}}",
"appicon":"{{params.appIcon}}",
"title":"{{params.title}}",
"page_path":"{{params.url}}",
"file_id":"{{params.fileId}}",
"aes_key":"{{params.aesKey}}",
"md5":"{{params.md5}}",
"size": 11122
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "sendVWorkCardMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"userId": "string"
}
}
{
"type":11161,
"data":{
"conversation_id":"{{params.conversationId}}",
"share_user_id":"{{params.userId}}"
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "sendVWorkFileMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"path": "string",
"fileName": "string"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"file": "{{params.path}}"
},
"type": 11031
}

View File

@@ -0,0 +1,16 @@
{
"type": "sendVWorkGifMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"path": "C:\\1.png"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"file": "{{params.path}}"
},
"type": 11070
}

View File

@@ -0,0 +1,20 @@
{
"type": "sendVWorkGroupAtMessage",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"message": "string",
"atList": [
"string"
]
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"content": "{{params.message}}",
"at_list": "{{params.atList}}"
},
"type": 11069
}

View File

@@ -0,0 +1,16 @@
{
"type": "sendVWorkImageMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"path": "C:\\1.png"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"file": "{{params.path}}"
},
"type": 11030
}

View File

@@ -0,0 +1,16 @@
{
"type": "sendVWorkTextMessage",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"message": "string"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"content": "{{params.message}}"
},
"type": 11029
}

View File

@@ -0,0 +1,22 @@
{
"type": "sendVWorkUrlMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"url": "string",
"imagePath": "string",
"title": "string",
"content": "string"
}
}
{
"type":11159,
"data":{
"conversation_id":"{{params.conversationId}}",
"url":"{{params.url}}",
"image_url":"{{params.imagePath}}",
"title":"{{params.title}}",
"desc":"{{params.content}}"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "sendVWorkVideoMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"path": "C:\\1.png"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"file": "{{params.path}}"
},
"type": 11067
}

View File

@@ -0,0 +1,34 @@
{
"type": "sendVWorkVideoNumberLiveMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"avatarUrl": "string",
"coverUrl": "string",
"desc": "string",
"feedType": 4,
"nickname": "string",
"url": "string",
"thumbUrl": "string",
"extras": "string",
"objectId": "string",
"objectNonceId": "string"
}
}
{
"data": {
"conversation_id": "{{params.conversationId}}",
"avatar": "{{params.avatarUrl}}",
"cover_url": "{{params.coverUrl}}",
"desc": "{{params.desc}}",
"extras": "{{params.extras}}",
"feed_type": 9,
"nickname": "{{params.nickname}}",
"object_id": "{{params.objectId}}",
"object_nonce_id": "{{params.objectNonceId}}",
"thumb_url": "{{params.thumbUrl}}",
"url": "{{params.url}}"
},
"type": 11196
}

View File

@@ -0,0 +1,30 @@
{
"type": "sendVWorkVideoNumberMessage",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "接收方微信id",
"avatarUrl": "string",
"coverUrl": "string",
"desc": "string",
"feedType": 4,
"nickname": "string",
"url": "string",
"thumbUrl": "string",
"extras": "string"
}
}
{
"data":{
"conversation_id":"{{params.conversationId}}",
"avatar":"{{params.avatarUrl}}",
"cover_url":"{{params.coverUrl}}",
"desc":"{{params.desc}}",
"feed_type":4,
"nickname":"{{params.nickname}}",
"thumb_url":"{{params.thumbUrl}}",
"url":"{{params.url}}",
"extras":"{{params.extras}}"
},
"type":11172
}

View File

@@ -0,0 +1,16 @@
{
"type": "transferVWorkGroupOwner",
"params": {
"robotId": "机器人微信id",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"conversationId": "string",
"userId": "string"
}
}
{
"type":11090,
"data":{
"room_conversation_id":"{{params.conversationId}}",
"user_id":"{{params.userId}}"
}
}

View File

@@ -0,0 +1,22 @@
{
"type": "wxCdnDown",
"params": {
"robotId": "当前机器人微信ID",
"instanceId": "实例id 和 robotId 二者填一者就可以",
"fileSize": 0,
"aesKey": "string",
"authKey": "string",
"url": "string",
"savePath": "string"
}
}
{
"type":11171,
"data":{
"url":"{{params.url}}",
"auth_key":"{{params.authKey}}",
"aes_key":"{{params.aesKey}}",
"size":16504,
"save_path":"{{params.savePath}}"
}
}