GeWe框架:微信自动化,简单构建,高效增长
还在为微信生态中的重复操作、客服负担和转化难题困扰?技术复杂不应阻挡您的业务步伐。
GeWe框架将微信协议封装为开箱即用的API和可视化RPA组件,让您像搭积木一样快速构建自动化场景,释放人力,聚焦创新与增长。
开发者可便捷调用API集成扩展,业务人员无需代码、拖拽即可设计流程。Gewe框架助您高效运营,专注价值创造。
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 群ID
*/
chatroomId: string;
[property: string]: any;
示例
{
"appId": "{{appid}}",
"chatroomId": "21425161836@chatroom"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/group/quitChatroom' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"chatroomId": "21425161836@chatroom"
}'
返回响应
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}