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