當(dāng)智能客服系統(tǒng)演變?yōu)槠髽I(yè)數(shù)字神經(jīng)網(wǎng)絡(luò)的突觸節(jié)點(diǎn),其價(jià)值度量標(biāo)準(zhǔn)已從"問題解決率"轉(zhuǎn)向"商業(yè)洞察生成量"。通過構(gòu)建服務(wù)數(shù)據(jù)-業(yè)務(wù)決策-價(jià)值創(chuàng)造的增強(qiáng)回路,GeWe框架正在重新定義客戶服務(wù)的本質(zhì)——不僅是成本中心,更是驅(qū)動企業(yè)第二增長曲線的數(shù)據(jù)燃料庫。這種從工具理性到價(jià)值理性的跨越,標(biāo)志著客戶服務(wù)正式進(jìn)入認(rèn)知驅(qū)動的新紀(jì)元。
請求參數(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": "操作成功"
}