在數(shù)字化升級(jí)3.0階段,微信生態(tài)正成為企業(yè)服務(wù)模式革新的核心戰(zhàn)場(chǎng)。隨著智能交互系統(tǒng)的普及,微信機(jī)器人部署量突破歷史峰值。
以GeWe框架為代表的模塊化開(kāi)源架構(gòu),此類框架的崛起,與AI開(kāi)源生態(tài)的成熟密不可分。

請(qǐng)求參數(shù)
Header 參數(shù)
export interface ApifoxModel {
? ? "X-GEWE-TOKEN": string;
? ? [property: string]: any;
}
Body 參數(shù)application/json
export interface ApifoxModel {
? ? /**
? ? * 設(shè)備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"
}'
返回響應(yīng)
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? "ret": 200,
? "msg": "操作成功"
}