> For the complete documentation index, see [llms.txt](https://docs.graphlit.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.graphlit.dev/api-guides/use-cases/feeds/messaging/feed-create-intercom.md).

# Create Intercom Feed

## User Intent

"How do I sync Intercom conversations? Show me Intercom feed configuration."

## Operation

**SDK Method**: `createFeed()` with FeedTypes.Intercom\
**Auth**: API token

***

## Code Example (TypeScript)

```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: 'Customer Support',
  type: FeedTypes.Intercom,
  intercom: {
    type: FeedServiceTypes.IntercomTickets,
    token: process.env.INTERCOM_TOKEN!,
    readLimit: 100,
  },
  // Optional: add workflow for content processing
  // workflow: { id: workflow.createWorkflow.id }
});

console.log(`Intercom feed created: ${feed.createFeed.id}`);
```

***

## Configuration

**readLimit**: Max conversations\
**includeResolved**: Include closed tickets\
**assignee**: Filter by assigned user

***
