Like software versions on a download page — v1.0 and v2.0 are both available; you choose which to use.
URL versioning is the most visible and cacheable approach. Clients explicitly request /api/v2/users. Both versions run simultaneously.
> GET /api/v1/users/123 → { id, name }
> GET /api/v2/users/123 → { id, displayName, profile, _links }
> Both routes active simultaneouslyLike software versions on a download page — v1.0 and v2.0 are both available; you choose which to use.
URL versioning is the most visible and cacheable approach. Clients explicitly request /api/v2/users. Both versions run simultaneously.
> GET /api/v1/users/123 → { id, name }
> GET /api/v2/users/123 → { id, displayName, profile, _links }
> Both routes active simultaneouslySign in to cast your vote
Sign in to share your feedback and join the discussion.