定價(jià)頁 | 點(diǎn)此進(jìn)入 |
免費(fèi)方式 | 有限試用 |
定價(jià)方式 | 訂閱 |
采購渠道 | 官網(wǎng) |
API適用國家/地區(qū) | 美國 |
支持語言 | N/A |
Intercom API 服務(wù)商
評分 47/100
5
Intercom是什么公司
更多Intercom是一家提供全面的人工智能優(yōu)先客戶服務(wù)平臺的公司,其服務(wù)包括即時(shí)客戶服務(wù)、多渠道支持、幫助中心、智能助手、報(bào)告和工作流程自動(dòng)化等。公司旨在通過AI技術(shù)提高客戶服務(wù)效率和質(zhì)量,為顧客、客服代理和支持團(tuán)隊(duì)領(lǐng)導(dǎo)者提供創(chuàng)新的解決方案。
官網(wǎng)入口 | 點(diǎn)擊進(jìn)入 | API開放平臺 | 點(diǎn)擊進(jìn)入 |
公司名稱 | Intercom | 公司簡稱 | Intercom |
公司分類 | AI技術(shù) 、 AI對話 | 主營產(chǎn)品 | N/A |
成立時(shí)間 | N/A | 總部地址 | N/A |
網(wǎng)站排名 | 38.9K | 月用戶量 | 1.0M |
國家/地區(qū) | 美國 | 收錄時(shí)間 | 2024.09.12 |
Intercom的API接口(產(chǎn)品與功能)
Intercom 提供了一個(gè)公共 API,允許開發(fā)者以編程方式從他們的應(yīng)用程序中獲取數(shù)據(jù)。這些數(shù)據(jù)可以用來與其他服務(wù)集成,或者構(gòu)建利用 Intercom 數(shù)據(jù)的自定義應(yīng)用程序。
Intercom 提供了許多 API 端點(diǎn),可以用來獲取與用戶、對話、消息線程等有關(guān)的數(shù)據(jù)。在這篇博客文章中,我們將探索 Intercom 提供的一些最受歡迎的 API 端點(diǎn),并為每個(gè)端點(diǎn)提供 JavaScript 示例代碼。
在開始使用 Intercom API 之前,你需要為你的應(yīng)用程序生成一個(gè)訪問令牌。你可以通過登錄你的 Intercom 賬戶,并在 API 密鑰設(shè)置中生成一個(gè)“個(gè)人訪問令牌”來做到這一點(diǎn)。
生成訪問令牌后,你可以在“Authorization”頭中包含它來驗(yàn)證你的請求,如下所示:
const baseURL = "https://api.intercom.io";
const accessToken = "YOUR_ACCESS_TOKEN";
axios.defaults.headers.common.Authorization = `Bearer ${accessToken}`;
axios.defaults.headers.post["Content-Type"] = "application/json";
用戶 API 端點(diǎn)用于獲取你的 Intercom 賬戶中的用戶信息。你可以使用這些端點(diǎn)來獲取用戶屬性,如姓名、電子郵件地址和用戶 ID。
axios.get(`${baseURL}/users`, {
params: {
per_page: 50
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
axios.get(`${baseURL}/users/${userId}`)
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
axios.post(`${baseURL}/users`, {
email: "john.doe@example.com",
name: "John Doe",
signed_up_at: new Date().toISOString()
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
對話 API 端點(diǎn)用于獲取你的 Intercom 賬戶中的對話信息。
axios.get(`${baseURL}/conversations`, {
params: {
per_page: 50
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
axios.get(`${baseURL}/conversations/${conversationId}`)
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
axios.post(`${baseURL}/conversations`, {
message_type: "inapp",
body: "Hello, how can I assist you?",
from: {
type: "admin",
id: "YOUR_ADMIN_ID"
},
to: {
type: "user",
id: "USER_ID"
},
assignee: {
type: "admin",
id: "YOUR_ADMIN_ID"
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
Intercom 的公共 API 提供了廣泛的端點(diǎn)和功能,使開發(fā)者能夠以編程方式訪問和管理他們的 Intercom 賬戶中的數(shù)據(jù)。在這篇博客文章中,我們提供了一些最受歡迎的 API 端點(diǎn)的示例 JavaScript 代碼。
記得總是指定你的 API 訪問令牌來驗(yàn)證你的請求,并查閱 Intercom 的 API 文檔以獲取更多信息和功能。
Intercom API的價(jià)格(API免費(fèi)方式與收費(fèi)標(biāo)準(zhǔn))
在選擇API服務(wù)商時(shí),綜合評估以下維度,選擇最適合自己需求的API服務(wù)商,確保技術(shù)兼容性和成本效益。
Intercom API Key怎么獲取(API調(diào)用與對接教程)
Intercom的最佳替代品(競品對比) (更多)
Nara是一款A(yù)I驅(qū)動(dòng)的數(shù)字銷售助手,旨在幫助在線商店提升銷量并保持客戶滿意度。它能夠自動(dòng)回答70%的支持問題,實(shí)現(xiàn)22%的月收入增長,并擴(kuò)大潛在客戶群。Nara提供全天候支持,通過自動(dòng)化處理訂單跟蹤、取消、退款等流程,節(jié)省時(shí)間。它還能無縫集成到CRM、Instagram DMs、電子郵件等多種聊天渠道,提供類似實(shí)體店銷售助理的人性化聊天體驗(yàn)。
Open提供完整的AI客戶支持生態(tài)系統(tǒng),通過電話、電子郵件和網(wǎng)絡(luò)解決60-80%的復(fù)雜客戶支持問題,降低成本超過50%。公司專注于提供AI優(yōu)先的電話中心、多語言AI支持、付費(fèi)僅基于使用量,并提供超過25個(gè)集成選項(xiàng),包括與CRM、支持應(yīng)用等的集成。