Skip to main content
The Nuvion API is versioned by date. Breaking changes are introduced in new versions — older versions continue to work until they are deprecated.

Setting the version

Pass the version as a request header:
X-API-Version: 2026-02-06
If you omit the header, your requests are routed to the latest version (2026-02-06). To pin your integration to a specific version, always send the header explicitly.
Pin to a specific version in production. Relying on the default means your integration will automatically receive future breaking changes.

Versions

2026-02-06 — Current

The latest version. This is the default when no X-API-Version header is sent.
X-API-Version: 2026-02-06

2026-01-01 — Previous

The previous stable version. Still supported — pass the header to continue receiving the old response structure.
X-API-Version: 2026-01-01
A deprecation and sunset date for 2026-01-01 will be communicated with a minimum of 90 days notice via email and in these docs.

Migrating from 2026-01-01 to 2026-02-06

To migrate, update your integration to handle the new response structure, then switch the header (or remove it to use the default). If you need help identifying what changed for a specific endpoint, contact support.

Version errors

Error codeHTTP statusDescription
error_auth_api_version_not_supported400The version string in X-API-Version does not match any known version.
error_auth_api_version_not_available403The requested version exists but is not available to your account.
error_auth_api_version_deprecated410The requested version has been discontinued. Migrate to a supported version.
error_auth_api_version_locked403Your account is locked to a specific version. Contact support to change it.
error_auth_api_version_access_denied403Your account does not have access to the requested version.