智能交互中枢:GeWe框架重塑企业服务智能生态
在智能化办公浪潮下,基于GeWe框架的微信机器人正成为效率升级的利器。通过本指南,您可快速搭建符合企业合规要求的智能微信机器人。建议在开发过程中使用沙箱环境测试,并定期更新SDK版本以获取最新安全补丁。
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 群ID
*/
chatroomId: string;
/**
* 群备注
*/
chatroomRemark: string;
[property: string]: any;
}
示例
{
"appId": "{{appid}}",
"chatroomRemark": "GeWe test private",
"chatroomId": "34757816141@chatroom"
}
示例代码
curl --location --request POST 'http://218.78.116.24:10883/gewe/v2/api/group/modifyChatroomRemark' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"chatroomRemark": "GeWe test private",
"chatroomId": "34757816141@chatroom"
}'
返回响应
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}