FileFeed uses date-based API versions. Every entry below is a version you can pin to via theDocumentation Index
Fetch the complete documentation index at: https://docs.filefeed.io/llms.txt
Use this file to discover all available pages before exploring further.
FileFeed-Version header. Existing integrations stay on
their pinned version forever (until that version’s sunset date) — bumping
is opt-in.
See the API introduction for how
versioning works and the migration guides below for
upgrade walkthroughs.
2026-05-25 Latest
The “Connection” rename.
Added
- New canonical endpoints under
/connections/*mirroring the existing/clients/*routes one-for-one. FileFeed-Versionresponse header on every reply so clients can audit which shape the server applied.Deprecation/Sunset/Linkresponse headers on legacy/clientsroutes when accessed with this version (per RFC 8594 and draft-ietf-httpapi-deprecation-header).@filefeed/sdk@2.0.0published with:filefeed.connections.*namespaceFileFeedConfig.apiVersionoverrideFileFeedConfig.onDeprecationcallback
Changed
- The entity formerly called
Clientis now calledConnection. The database row, IDs, and JSON shape are unchanged — only the name moved. - TypeScript types
Client,CreateClientParams,UpdateClientParamsare now aliases forConnection,CreateConnectionParams,UpdateConnectionParams. Source-compatible — existing code keeps compiling.
Deprecated
- HTTP: all
/clients/*routes when called withFileFeed-Version: 2026-05-25. They keep working but emitDeprecation: true. - SDK:
filefeed.clients.*methods. They proxy toconnections.*and emit one warning per method per process. - Method rename:
filefeed.clients.testConnection(id)→filefeed.connections.test(id).
Sunset
- API version
2024-09-01is scheduled for sunset on 2027-05-25.
2024-09-01 Deprecated · sunsets 2027-05-25
Baseline. This is the version every workspace was created on prior to the
2026-05-25 release. No prior changelog entries exist — this is the first
version where date-based versioning was introduced; we backdated the
baseline label to the date of GA so we have a coherent timeline.
Endpoints
/clients/*,/schemas/*,/pipelines/*,/pipeline-runs/*,/webhooks/*,/outbound/*
Sunset behaviour
On 2027-05-25, requests sent withFileFeed-Version: 2024-09-01 will
receive 410 Gone:
Migration guides
- Upgrade to 2026-05-25 — Client → Connection rename