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,多个逗号分隔
*/
labelIds: string;
[property: string]: any;
}
示例
{
"appId": "{{appid}}",
"labelIds": "31"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/label/delete' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"labelIds": "31"
}'
返回响应
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}