The contract
Three guarantees hold for every connector, prebuilt or custom:- Read-only, always. No connector writes to a source system. See Security.
- Idempotent ingestion. Every record is deduplicated by content hash; re-running a sync never creates duplicates.
- Observable syncs. Every run produces a sync record with per-stage counters, visible on the connectorâs detail page.
Build your own
A custom connector is that contract, implemented by you, over the Ingestion API:- Register a source.
POST /v1/sourcesreturns asourceIdfor the system youâre bringing in. - Push records in batches.
POST /v1/ingesttakes records shaped as{ recordId, entityType, payload, sourceUpdatedAt }, up to 500 at a time. Full dumps work; incremental feeds (everything since a cursor) make re-syncs cheap, and content-hash dedup means re-sending an unchanged record is a no-op. - Seyn does the rest. Dedup, normalization into events, identity resolution, provenance linking, extraction, and querying treat your records exactly like records from a prebuilt connector. Same chain, same receipts.
Early access. The Ingestion API and the contract behind it are stable and are the same path our own connectors use, but ingestion requires an API key with the
ingest scope, granted per organisation during alpha. Request access and weâll enable a write-scoped key and onboard your source together.Prebuilt connectors
Prebuilt connectors add what generic ingestion canât know: each sourceâs auth flow, delta semantics, edit and delete behaviour, and quirks.
More connectors land regularly. Anything not on this list can be ingested today as a custom connector, or tell us what you need and donât wait.
How delta sync works
The Microsoft connectors use Graph delta queries: after the initial full sync, each run asks only âwhat changed since my last checkpoint?â- Atomic checkpoints, scoped small. The delta token is stored per drive, per channel, or per folder, and committed atomically with the records it covers. A crash mid-sync resumes from the last consistent point: never re-ingesting, never skipping.
- Failure isolation. One channel or drive failing doesnât abort the others; itâs recorded in the sync run and retried next time.
- Expired tokens self-heal. When the source invalidates a delta token, the connector transparently restarts a full enumeration, and content-hash dedup makes that resync cheap and duplicate-free.
- Edits and deletes propagate. Edited messages update their event in place; deletions soft-delete downstream events rather than breaking the provenance chain.
Honest limitations
- Teams: standard channels only. Private and shared channels sit behind different permission models we havenât validated yet.
- Teams replies have no delta endpoint (a Microsoft Graph limitation), so replies are re-pulled when their parent changes.
- Protected APIs. Some Teams data sits behind Microsoftâs Protected API approval. If a tenant lacks approval, the sync surfaces an explicit terminal status naming the admin action required. It doesnât silently return partial data.
- System messages are filtered. Joins, renames, and app-install notices are noise for process extraction and are dropped at ingestion.
Connector lifecycle
Planned: auto-sync. Per-connector schedules, opt-in post-sync knowledge rebuild, and staleness indicators are specified and coming. See Status.
Common mistakes
Related
Events
The common schema your records are normalized into.
Documents
The deepest connector: parsing, extraction, and the upload inbox.