API for the Exchange of Medicinal Product Information (APIX), published by HL7 International / Biomedical Research and Regulation. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/APIX---API-Exchange-for-Medicinal-Products/ and changes regularly. See the Directory of published versions
| Page standards status: Informative |
APIX creates transparency in regulatory submissions by leveraging the HL7 FHIR R5 Subscription Framework. Instead of manually checking portals or waiting for emails, systems subscribe to specific events and receive immediate, machine-readable notifications.
This capability underpins the "FedEx-style" visibility into the regulatory lifecycle — enabling portfolio-wide performance dashboards automatically.
Note
This capability underpins the Unified Status Tracking use case, providing a "FedEx-style" visibility into the regulatory lifecycle.
Applicant System
2a. Subscribe: The Applicant's system (e.g., RIM) sends a Subscription resource to the Regulator's APIX server that registers for the
3b. Trigger: A change occurs (e.g., an assessor changes a Task status from received to in-progress).
4b. Notify: The Regulator's server matches the change to the Subscription criteria and immediately sends a notification to the Applicant's endpoint.
Regulator System
2a. Subscribe: The Regulator system sends a Subscription resource to the Regulator's APIX server that registers a subcription for the Task creation SubscriptionTopic, filtered to respond only to specific Tasks where the Applicant is the Task.owner.
3b. Trigger: A change occurs (e.g., an assessor changes a Task status from received to in-progress).
4b. Notify: The Regulator's server matches the change to the Subscription criteria and immediately sends a notification to the Applicant's endpoint.
APIX uses the R5 Topic-Based Subscription model (SubscriptionTopic) to define standard events.
| Topic Canonical | Description | Trigger Event |
|---|---|---|
http://hl7.org/fhir/uv/apix/SubscriptionTopic/task-update |
Task Status Change | Any update to Task.status (e.g., accepted, rejected, on-hold) |
http://hl7.org/fhir/uv/apix/SubscriptionTopic/new-message |
New Inbound Task | Creation of a new Task assigned to the subscriber (e.g., a new Question or Decision) |
To start receiving notifications, an Applicant POSTs a Subscription resource.
Example: Subscribe to all updates for a specific Procedure
{
"resourceType": "Subscription",
"status": "active",
"topic": "http://hl7.org/fhir/uv/apix/SubscriptionTopic/task-update",
"filterBy": [
{
"filterParameter": "group-identifier",
"value": "Procedure-2025-00123"
}
],
"channelType": {
"system": "http://terminology.hl7.org/CodeSystem/subscription-channel-type",
"code": "rest-hook"
},
"endpoint": "https://rim-system.pharma-corp.com/apix-webhook"
}
APIX supports two primary channel types for different architectural needs:
id-only (ping) or full-resource (contains the updated Task).Because every regulatory milestone is a timestamped event, the subscription feed doubles as a real-time analytics stream.
By storing the notification history, an organization can automatically reconstruct the full timeline of any procedure and calculate performance metrics without manual data entry:
Task.authoredOn (Draft) vs Task.lastModified (Requested)Task.authoredOn (Received) vs Task.lastModified (Completed)status = on-holdTip
This raw data enables the "Free Performance Dashboards" mentioned in the IG Home.
For worked examples of what this analytics stream produces — a full single-procedure lifecycle timeline reconstructed from Task versions, a regulator's live activity board, and auto-generated annual performance reports — see the Scenario Examples on the Use Cases page.