在私域运营中用户就是企业最宝贵的资产。但运营工作常常琐碎重复占据了大量时间让价值创造受限。GeWe 开放平台用智能化、轻量化的方式让企业从繁琐中解放出来高效连接用户实现持续增长。24/7 智能互动沟通永不断线无论是新粉丝还是老客户GeWe 都能快速识别需求并即时回复。告别人工延迟和遗漏让每一次互动都转化为真实业务机会。社群管理从混乱到井然自动建群、定向推送、趣味互动……GeWe 把复杂的社群运营流程系统化、可复制。即便管理上百个社群也能轻松掌控实现规模化和精细化运营。零门槛上手安全稳健无需庞大研发投入也不用等待漫长开发周期。GeWe 提供成熟可靠的 API 接口开箱即用业务平稳运行有保障。当别人还在靠人工一点点“磨”运营你已经用智能工具抢占效率高地实现高效增长。GeWe 开放平台——让私域运营回归价值让企业走得更稳、更远。请求参数Header 参数export interface ApifoxModel { X-GEWE-TOKEN: string; [property: string]: any; }Body 参数application/jsonexport interface ApifoxModel { /** * 设备ID */ appId: string; /** * 的好友多个英文逗号分隔。群主或管理员全部的人则填写notifyall */ ats?: string; /** * 消息内容 */ content: string; /** * 好友/群的ID */ toWxid: string; [property: string]: any; }示例{ appId: {{appid}}, toWxid: 34757816141chatroom, ats: wxid_phyyedw9xap22, content: 猿猴 我在测试艾特内容 }请求示例代码curl --location --request POST http://api.geweapi.com/gewe/v2/api/message/postText \ --header X-GEWE-TOKEN: \ --header Content-Type: application/json \ --data-raw { appId: , toWxid: 34757816141chatroom, ats: wxid_phyyedw9xap22, content: 猿猴 我在测试艾特内容 }返回响应export interface ApifoxModel { data: Data; msg: string; ret: number; [property: string]: any; } export interface Data { /** * 发送时间 */ createTime: number; /** * 消息ID */ msgId: number; /** * 消息ID */ newMsgId: number; /** * 接收人的wxid */ toWxid: string; /** * 消息类型 */ type: number; [property: string]: any; }示例{ ret: 200, msg: 操作成功, data: { toWxid: 34757816141chatroom, createTime: 1703841160, msgId: 0, newMsgId: 3768973957878705021, type: 1 } }