Framing the problem

QNXT (a TriZetto/Cognizant core administration platform) manages enrollment, benefits, claims adjudication, and related payer operations for many plans. CMS-0057-F does not ask you to replace it. It asks you to expose FHIR APIs — Patient Access, Provider Access, Payer-to-Payer, and Prior Authorization — whose data largely originates in systems like QNXT. The engineering question is how to connect the two without turning your core platform into a public FHIR server.

No unsupported product claims. This guide describes an integration pattern, not native product capabilities. It does not assert that QNXT (or any other named platform) ships CMS-0057-F FHIR APIs out of the box. Confirm any specific capability against the vendor's own current documentation. Treat the adapter as your responsibility unless the vendor states otherwise.

Why the CMS APIs are not "expose the core database"

It is tempting to point a FHIR façade straight at the core administration database. Resist it. The CMS APIs require conformant FHIR profiles (US Core, CARIN Blue Button, Da Vinci PDex/PAS), consistent standard terminology, consent and opt-out enforcement, provenance, and scoping rules (for example, excluding remittances and cost-sharing from provider and payer-to-payer payloads). A raw database projection satisfies none of these reliably, couples your public API to an internal schema, and creates a security and performance liability. The API should be a governed projection of core data, produced by an interoperability layer — not a direct window into the core.

Reference architecture

Consumers / EHRs / other payers
Member apps · provider systems · peer payers
OAuth / API security
SMART App Launch & SMART Backend Services
FHIR API gateway
Conformance, routing, rate limiting, audit
CMS-0057-F interoperability services
Patient / Provider / Payer-to-Payer / Prior Auth logic
Mapping / terminology / orchestration
Profiles · code translation · consent · Provenance
Core administration adapters
Read/write bridges to native platform interfaces
QNXT
This guide's focus
Facets / HealthEdge / custom
Same pattern, different adapter
Modern payer core
e.g. CloudHealthOffice
Figure 1 — A layered CMS-0057-F architecture in front of QNXT (or an equivalent core platform).

The adapter layer

The adapter is the seam between standard FHIR and a platform's native interfaces. Its jobs:

Adapters are an onboarding/integration concern: each core platform, and sometimes each plan's configuration, needs its own mapping work. Budget for it explicitly rather than assuming a drop-in connector exists.

API-by-API considerations

APIPrimary core dataAdapter emphasis
Patient AccessCoverage, claims (EOB), clinical, PA statusRead projection + member-scoped auth
Provider AccessAttributed-member claims/clinical/PAAttribution + opt-out enforcement
Payer-to-PayerUp to 5 years of claims/clinical/PAConsent, Provenance, reconciliation on ingest
Prior AuthorizationUM rules, medical policy, auth recordsPAS ↔ UM/X12 orchestration (read + write)

Build internally, overlay, or adopt a modern backend

There are three broad ways to obtain the interoperability layer above:

  1. Build it internally — maximum control, highest engineering and maintenance cost, and you own conformance as the specifications evolve.
  2. Add an interoperability layer in front of QNXT — an overlay provides the FHIR APIs, mapping, terminology, and orchestration while the core platform stays in place. This is the most common path for payers with a heavy existing core investment.
  3. Use a broader modern payer platform — where a plan is already modernizing, a modern backend can provide these capabilities natively rather than as an overlay.

These are not mutually exclusive, and the right answer depends on your modernization roadmap. A modern payer platform such as CloudHealthOffice can serve as either an interoperability layer integrated with an existing core administration system like QNXT or, depending on the implementation model, as part of the core backend itself. The point of the architecture is that the choice of backend is an adapter concern behind a stable FHIR boundary — you can change it without changing the public API.

Onboarding checklist

Regulatory vs. architectural. CMS mandates the API outcome and the standards. The layered architecture, the adapter pattern, and the build/overlay/modern-backend choice are architectural options that satisfy the rule — CMS does not mandate any particular internal design or product.
All guides → ← CRD, DTR & PAS