定價頁 | 點此進(jìn)入 |
免費方式 | 有限試用 |
定價方式 | 訂閱 |
采購渠道 | 官網(wǎng) |
API適用國家/地區(qū) | 美國 |
支持語言 | N/A |
Intercom API 服務(wù)商
評分 47/100
5
Intercom是什么公司
更多Intercom是一家提供全面的人工智能優(yōu)先客戶服務(wù)平臺的公司,其服務(wù)包括即時客戶服務(wù)、多渠道支持、幫助中心、智能助手、報告和工作流程自動化等。公司旨在通過AI技術(shù)提高客戶服務(wù)效率和質(zhì)量,為顧客、客服代理和支持團(tuán)隊領(lǐng)導(dǎo)者提供創(chuàng)新的解決方案。
Intercom的API接口(產(chǎn)品與功能)
Intercom 提供了一個公共 API,允許開發(fā)者以編程方式從他們的應(yīng)用程序中獲取數(shù)據(jù)。這些數(shù)據(jù)可以用來與其他服務(wù)集成,或者構(gòu)建利用 Intercom 數(shù)據(jù)的自定義應(yīng)用程序。
Intercom 提供了許多 API 端點,可以用來獲取與用戶、對話、消息線程等有關(guān)的數(shù)據(jù)。在這篇博客文章中,我們將探索 Intercom 提供的一些最受歡迎的 API 端點,并為每個端點提供 JavaScript 示例代碼。
在開始使用 Intercom API 之前,你需要為你的應(yīng)用程序生成一個訪問令牌。你可以通過登錄你的 Intercom 賬戶,并在 API 密鑰設(shè)置中生成一個“個人訪問令牌”來做到這一點。
生成訪問令牌后,你可以在“Authorization”頭中包含它來驗證你的請求,如下所示:
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 端點用于獲取你的 Intercom 賬戶中的用戶信息。你可以使用這些端點來獲取用戶屬性,如姓名、電子郵件地址和用戶 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 端點用于獲取你的 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 提供了廣泛的端點和功能,使開發(fā)者能夠以編程方式訪問和管理他們的 Intercom 賬戶中的數(shù)據(jù)。在這篇博客文章中,我們提供了一些最受歡迎的 API 端點的示例 JavaScript 代碼。
記得總是指定你的 API 訪問令牌來驗證你的請求,并查閱 Intercom 的 API 文檔以獲取更多信息和功能。
Intercom API的價格(API免費方式與收費標(biāo)準(zhǔn))
在選擇API服務(wù)商時,綜合評估以下維度,選擇最適合自己需求的API服務(wù)商,確保技術(shù)兼容性和成本效益。
Intercom API Key怎么獲?。ˋPI調(diào)用與對接教程)
Intercom的最佳替代品(競品對比) (更多)
Nara是一款A(yù)I驅(qū)動的數(shù)字銷售助手,旨在幫助在線商店提升銷量并保持客戶滿意度。它能夠自動回答70%的支持問題,實現(xiàn)22%的月收入增長,并擴大潛在客戶群。Nara提供全天候支持,通過自動化處理訂單跟蹤、取消、退款等流程,節(jié)省時間。它還能無縫集成到CRM、Instagram DMs、電子郵件等多種聊天渠道,提供類似實體店銷售助理的人性化聊天體驗。
Open提供完整的AI客戶支持生態(tài)系統(tǒng),通過電話、電子郵件和網(wǎng)絡(luò)解決60-80%的復(fù)雜客戶支持問題,降低成本超過50%。公司專注于提供AI優(yōu)先的電話中心、多語言AI支持、付費僅基于使用量,并提供超過25個集成選項,包括與CRM、支持應(yīng)用等的集成。