智能交互系統(tǒng)賦能企業(yè)服務(wù)升級(jí)——微信生態(tài)下的自動(dòng)化解決方案
在即時(shí)通訊平臺(tái)深度滲透商業(yè)領(lǐng)域的當(dāng)下,基于微信生態(tài)構(gòu)建的智能交互系統(tǒng)正成為企業(yè)數(shù)字化轉(zhuǎn)型的重要工具。這類智能化解決方案通過融合自然語言處理與自動(dòng)化響應(yīng)技術(shù),在保障用戶體驗(yàn)的同時(shí)為企業(yè)創(chuàng)造多維價(jià)值。
請(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;
? ? [property: string]: any;
}
示例
{
? "appId": "{{appid}}",
? "chatroomId": "21425161836@chatroom"
}
示例代碼
curl --location --request POST 'http://218.78.116.24:10883/gewe/v2/api/group/quitChatroom' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
? ? "appId": "",
? ? "chatroomId": "21425161836@chatroom"
}'
返回響應(yīng)
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? "ret": 200,
? "msg": "操作成功"
}