Create Intercom Articles Feed
User Intent
Operation
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
Intercom Token Setup
What Gets Synced
IntercomArticles vs IntercomTickets
Use Cases
Intercom API Scopes
Related
Last updated