告别多个微信的重复操作,破解客服成本与增长瓶颈的双重难题。
GeWe 框架为您提供全新破局思路,助力您开启微信生态高效增长的新篇章。
通过将复杂的微信原生协议封装成即用型积木式模块,GeWe 让每个人都能高效参与:
•致开发者:提供便捷的API与深度集成能力,为您的技术创新赋能,轻松构建定制化解决方案。
•致运营者:无需代码基础,通过直观的拖拽界面即可部署智能任务,实现自动化运营与高效用户转化。

请求参数
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://api.geweapi.com/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": "操作成功"
}
开启