Create Intercom Articles Feed
User Intent
"How do I sync Intercom Help Center articles? Show me Intercom Articles feed configuration."
Operation
SDK Method: createFeed() with FeedTypes.Intercom
Auth: Intercom access token
Code Example (TypeScript)
import { Graphlit } from 'graphlit-client';
import { FeedTypes, FeedServiceTypes } from 'graphlit-client/dist/generated/graphql-types';
const graphlit = new Graphlit();
const feed = await graphlit.createFeed({
name: 'Help Center',
type: FeedTypes.Intercom,
intercom: {
type: FeedServiceTypes.IntercomArticles,
accessToken: process.env.INTERCOM_TOKEN!,
readLimit: 200,
},
// Optional: add workflow for content processing
// workflow: { id: workflow.createWorkflow.id }
});
console.log(`Created Intercom Articles feed: ${feed.createFeed.id}`);Configuration
type: FeedServiceTypes.IntercomArticles
accessToken: Intercom access token
readLimit: Number of articles to sync
Intercom Token Setup
Go to Intercom → Settings → Developers → Developer Hub
Create new app or select existing app
Configure OAuth scopes:
Read articlesGenerate access token
Set
INTERCOM_TOKENenvironment variable
What Gets Synced
Help Center article titles and content
Article collections and sections
Article metadata (author, status, dates)
Article URLs and translations
Article statistics (views, reactions)
IntercomArticles vs IntercomTickets
Use IntercomArticles for:
Help Center content
Knowledge base articles
Self-service documentation
Product guides
FAQ content
Use IntercomTickets for:
Customer support conversations
Support tickets
User inquiries
Chat transcripts
Use Cases
Product Documentation:
type: FeedServiceTypes.IntercomArticlesCustomer Self-Service:
type: FeedServiceTypes.IntercomArticles,
readLimit: 500 // Large knowledge baseMulti-language Support:
// Intercom automatically includes article translations
type: FeedServiceTypes.IntercomArticlesIntercom API Scopes
Required OAuth scopes:
Read articles- Access help center articlesRead collections- Access article collections
Optional scopes:
Read admins- Get article author infoRead teams- Get team assignments
Related
Intercom Tickets Feed - Support conversations
Zendesk Articles - Zendesk knowledge base
Notion Feed - Notion docs
Last updated
Was this helpful?