API versioning
This article describes how Tealium APIs are versioned, what constitutes a breaking change, and how to migrate between versions.
How it works
Tealium APIs use a calendar-based versioning strategy. A new version is released only when a breaking change is introduced. Non-breaking changes such as new endpoints or optional fields are delivered to the current version without releasing a new version. This versioning strategy gives you a predictable, stable integration target with migration timelines.
Versioning format
Versions are identified by a date in the YYYY-MM format, prefixed with v, and included in the URL path:
https://api.tealium.com/v{YYYY-MM}/{api-family}/{resource}
│ │ │ └─ Resource path
│ │ └───────────── API family (cdp, iq, etc.)
│ └─────────────────────── Calendar version
└───────────────────────────────────────────────── Global hostname
For example:
https://api.tealium.com/v2026-06/cdp/audiences
https://api.tealium.com/v2026-06/cdp/labels
https://api.tealium.com/v2026-10/cdp/audiences
Regional hostnames
There are no regional hostnames to manage. Tealium routes traffic to the nearest region.
Breaking and non-breaking changes
A new version is created only when a breaking change is introduced. The following are considered breaking changes:
- Removing or renaming an existing field in a response
- Changing the type of an existing field
- Renaming or removing a query parameter or path parameter
- Changing the default behavior of an existing endpoint
- Removing an endpoint entirely
- Changes to required OAuth 2.0 security scopes
The following changes are not breaking and are delivered to the current version:
- Adding a new endpoint
- Adding a new optional field to a request or response
- Adding a new optional query parameter
- Adding new enum values (when clients are expected to handle unknown values gracefully)
For example:
Q1 2026 release
├── New /enrichment endpoint → no new version needed
├── Optional metadata field added → no new version needed
└── Current version remains: v2026-01
Q3 2026 release
├── audiences filter parameter renamed → BREAKING
├── New /segments endpoint → additive (included)
└── New version cut: v2026-06
URL changes from /v2026-01/cdp/... to /v2026-06/cdp/...
For information about support windows, deprecation signals, and end-of-life timelines, see API lifecycle.
Incremental migration
Multiple versions run simultaneously during the support window. You can migrate endpoint by endpoint and update the version in the URL path for each API call independently. You do not need to migrate all endpoints at once.
The Developer Portal provides a per-endpoint changelog for each version showing exactly which endpoints have breaking changes and what specifically changed. If an endpoint has no breaking changes, your existing code works unchanged on both the old and new version paths.
For example, when upgrading from 2026-01 to 2026-06:
/cdp/audiences : 2 changes (filter parameter renamed, new required field)
/cdp/labels : 1 change (response pagination format)
/cdp/events : no changes
/cdp/connectors : no changes
This migration strategy allows you to switch /cdp/events and /cdp/connectors to the new version path immediately with no code changes, then plan the /cdp/audiences and /cdp/labels migration separately.
# Migrate /audiences to the new version (has breaking changes)
curl -X GET \
https://api.tealium.com/v2026-06/cdp/audiences \
-H 'Authorization: Bearer {token}'
# Keep /events on the old version (no changes between versions)
curl -X GET \
https://api.tealium.com/v2026-01/cdp/events \
-H 'Authorization: Bearer {token}'
Best practices
- Pin your version explicitly: Always use a specific version in your URL path. Never rely on redirects or a
latestalias in production. - Monitor deprecation headers: Set up monitoring to alert when responses start including
Sunsetheaders. - Migrate incrementally: Update the version in the URL path one endpoint at a time. Both old and new version paths are active simultaneously.
- Review the changelog before upgrading: Focus only on endpoints with actual breaking changes.
- Skip intermediate versions when ready: You do not need to step through every version. Migrate directly from your current version to the latest.
This page was last updated: July 27, 2026