Testosterone Is Schedule III: What That Means for Online Sales

Testosterone — in all clinically used forms including testosterone cypionate, testosterone enanthate, testosterone propionate, and testosterone undecanoate — is classified by the DEA as a Schedule III controlled substance under the Controlled Substances Act (21 U.S.C. § 812). Schedule III substances are defined as drugs with a moderate to low potential for dependence and an accepted medical use in the United States. The anabolic steroid scheduling provisions of the Anabolic Steroid Control Act of 1990 and its 2004 amendment specifically enumerated testosterone and its esters in Schedule III, removing any ambiguity about their classification.

Schedule III classification imposes a specific set of legal requirements on every transaction in the distribution chain, from manufacturer to patient. For a telehealth clinic dispensing or arranging dispensing of testosterone to patients, the relevant requirements are:

Federal Law

Dispensing a controlled substance without a valid prescription is a federal felony under 21 U.S.C. § 841(a)(1), regardless of whether the dispensing was intentional or the result of a failed process. “I had a verification procedure but it failed” is not a defense. Each unverified transaction is an independent violation.

The online dimension adds another layer of regulatory complexity. The Ryan Haight Online Pharmacy Consumer Protection Act of 2008, which amended the Controlled Substances Act, specifically addresses the online prescribing of controlled substances. It prohibits any person from “deliver[ing], distribut[ing], or dispens[ing] a controlled substance by means of the Internet” unless specific conditions are met, including that the prescription was issued by a practitioner who has conducted at least one in-person medical evaluation of the patient. The DEA has worked to establish telemedicine exceptions to this rule, but those exceptions come with their own documentation and registration requirements, not an exemption from prescription verification itself.

The practical implication for any TRT clinic operating an online order flow is unambiguous: every online testosterone transaction must be backed by a verified, valid prescription before the order is processed. Not after. Not as a review step. Before. This requirement is not satisfied by having a prescription on file somewhere in the system. It requires that the checkout process itself confirm prescription validity before allowing the transaction to proceed.

How Standard E-Commerce Fails for Controlled Substances

Standard e-commerce platforms were designed to sell products. Their architecture reflects that purpose: products, carts, checkout, payment, fulfillment. There is no concept of a prescription. There is no regulatory entity in the data model. The checkout flow is designed to minimize friction and maximize conversion — the opposite of what controlled substance compliance requires.

The Shopify Architecture Problem

Shopify's architecture centers on products, variants, customers, and orders. When a customer adds an item to a cart and proceeds to checkout, Shopify validates inventory availability, payment method, and shipping address. It does not validate regulatory authorization, because no general-purpose e-commerce platform has any concept of what that means.

Shopify does expose webhooks that fire at various points in the checkout flow, and it does allow custom apps to add validation logic. However, these extensions operate at the application layer only. There is no mechanism to enforce a database-level constraint that prevents an order record from being created without a corresponding prescription record. Shopify's database is not accessible to clinic operators. The data model cannot be modified to add a required prescription foreign key. The fundamental architecture cannot be made compliant, regardless of how many apps or workarounds are layered on top.

Shopify also explicitly prohibits the sale of prescription drugs and controlled substances in its Acceptable Use Policy. Clinics attempting to sell testosterone through Shopify risk account termination in addition to the regulatory violations they are accumulating with each unverified transaction.

The WooCommerce Architecture Problem

WooCommerce is more extensible than Shopify, since it runs on WordPress where operators control the database schema. In theory, a developer could add custom tables, create prescription records, and write a plugin that checks those records during checkout. In practice, this approach has several failure modes that make it unsuitable for controlled substance compliance:

Manual Verification Error Rate
3–7%

of orders processed through manual verification workflows are completed without proper prescription verification, based on audit data from telehealth compliance consultancies. For a TRT clinic processing 400 testosterone orders per month, this represents 12–28 DEA violations every month, or 144–336 per year — each an independent federal violation.

The Manual Verification Trap

The most common approach for TRT clinics using standard e-commerce is to layer a manual verification step on top of the order flow. The typical workflow looks like this: a patient places an order, the order enters a pending or “needs review” state, a staff member cross-references the order against the prescription management system or EHR, and manually approves or rejects the order.

This workflow is appealing because it appears to add a compliance check without requiring a custom-built platform. It is deeply flawed in practice for several reasons. First, it depends entirely on human execution. Staff members are distracted, overloaded, absent, and subject to pressure to process orders quickly. All of these factors increase error rates. Second, the verification check happens after the customer has already completed checkout — after they have received an order confirmation, after they are expecting fulfillment. Rejecting the order after this point creates a poor patient experience and frequently leads to pressure on staff to approve borderline orders. Third, the manual step is not integrated with the transaction. The checkout system and the verification system are separate, and the connection between them is a human being who may or may not follow the correct procedure every single time.

Manual verification error rates have been consistently measured at 3 to 7 percent across telehealth compliance audits. This is not a large percentage, but the consequences of each failure are not proportional to the error rate. Each failure is an independent regulatory violation. For an overview of the full technology stack required to operate a compliant TRT clinic, see the guide to launching a profitable TRT/HRT telehealth practice.

What Prescription-Gated Checkout Means

Definition

TRT prescription checkout — also called prescription-gated checkout — is an online commerce architecture in which checkout is structurally impossible without a verified, active, non-expired prescription linked to the specific patient, compound, dosage, and authorized quantity. Compliance is enforced at both the application layer (API checks that query prescription records before initiating payment) and the database layer (schema constraints and triggers that prevent order records from being created without valid prescription references). There is no manual override path. It is technically impossible to process a testosterone order without prescription authorization.

The distinction between prescription-gated checkout and “e-commerce with a prescription verification step” is architectural, not procedural. In a procedural approach, a human or a plugin executes a verification step and then decides whether to allow the transaction. In a prescription-gated approach, the software architecture makes non-compliant transactions structurally impossible. Checkout does not slow down to check a prescription; checkout cannot begin without one.

Three properties define a true prescription-gated checkout system:

  1. Checkout is blocked, not flagged. Without a valid prescription, the checkout API returns an error and payment is never initiated. There is no “pending review” state for prescription products. The order is either authorized or it does not begin. This is fundamentally different from systems that allow the transaction and then flag it for review.
  2. Enforcement is dual-layered. The application layer checks prescription status via API before processing. The database layer independently prevents order insertion without a valid prescription reference. If one layer fails due to a bug, misconfiguration, or race condition, the other layer prevents the non-compliant transaction.
  3. No manual override exists in the purchase flow. There is no admin button to “approve without prescription.” The only path to a completed order is a valid prescription in the system. Administrative override capability exists for legitimate operational needs (e.g., reversing an erroneous block), but the override action itself is logged immutably in the audit trail.

Regular Checkout vs. Prescription-Gated Checkout

Dimension Regular E-Commerce (Shopify / WooCommerce) Prescription-Gated Checkout
Prescription concept in data model None. No prescription entity exists. Core entity. Prescription record required for all Rx products.
Checkout enforcement No enforcement. Any customer can check out any product. API blocks checkout; returns specific error if prescription is missing, expired, or mismatched.
Database-layer protection None. Orders can be inserted without prescription reference. Foreign key constraint + before-insert trigger. Order cannot be written to DB without valid Rx reference.
Expiration handling Not tracked. Expired prescriptions are indistinguishable from valid ones. Expiration date checked at every checkout event and every subscription renewal.
Dosage and quantity verification Not possible. No dosage data structure exists. Cart item must match prescribed compound, dosage, and authorized quantity exactly.
Refill limit enforcement None. No concept of authorized refills. Remaining refills decremented on each dispense. Checkout blocked when limit reached.
Subscription renewal compliance Renewals process regardless of prescription status. Each renewal re-verifies prescription. Subscription paused if prescription has expired.
Multi-compound orders No per-product prescription check. One verification may be applied to entire order. Each line item independently verified. Cart blocked if any item lacks valid Rx.
Audit trail Order records only. No prescription reference. Not suitable for DEA inspection. Immutable log of every verification event, prescription reference, prescriber identity, and dispense record.
DEA inspection readiness Cannot produce compliant controlled substance records. Complete 21 CFR Part 1304-compliant records producible on demand.
Controlled substance policy compliance Violates platform AUP. Account termination risk. Built specifically for controlled substance compliance.
Error rate 3–7% of orders processed without valid Rx (manual verification). 0% structural bypass. Non-compliant orders cannot complete.

The Dual-Layer Enforcement Model

Prescription-gated checkout derives its reliability from dual-layer enforcement — two independent mechanisms that each prevent non-compliant transactions, operating at different levels of the technology stack. Neither layer alone is sufficient. Together, they create genuine defense in depth.

Layer 1: Application Layer Enforcement

The application layer is the API that handles the checkout request. Before any payment processing occurs, the checkout API executes a prescription verification sequence for every item in the cart that is classified as a prescription product. For testosterone orders, this sequence includes:

  1. Authenticate the requesting patient and confirm identity against the prescription record
  2. Retrieve the patient's active prescriptions for each product in the cart
  3. Verify prescription status is active (not revoked, suspended, or pending)
  4. Verify the prescription expiration date is in the future
  5. Verify the prescribed compound name matches the cart product exactly (e.g., testosterone cypionate 200mg/mL cannot be substituted by testosterone enanthate 200mg/mL)
  6. Verify the prescribed dosage and quantity match the cart item's dosage and quantity
  7. Verify that remaining authorized refills are greater than zero
  8. Verify the prescribing practitioner's DEA registration is active in the patient's state
  9. If all checks pass: proceed to payment initiation
  10. If any check fails: return a structured error response identifying the specific item and the nature of the failure, with patient-facing guidance (e.g., “Your testosterone cypionate prescription expired on March 1, 2026. Schedule a follow-up consultation to renew.”)

The application layer handles the patient-facing experience. It provides clear, actionable error messages, prevents payment initiation, and creates a logged record of the verification attempt and its outcome. However, application-layer code has vulnerabilities: bugs, misconfiguration, race conditions between when the API checks the prescription and when the order is written to the database, and direct API calls that bypass intended workflows. This is why the database layer is essential.

Layer 2: Database Layer Enforcement

The database layer operates independently of the application. It uses schema constraints and triggers built into the database engine itself, which cannot be bypassed by application-layer bugs, misconfigured middleware, or direct API calls that circumvent the normal checkout flow.

The specific database-level controls for a prescription-gated TRT checkout system include:

Defense in Depth

With dual-layer enforcement, a non-compliant testosterone order requires both an application-layer failure and a database-layer failure to succeed. The probability of both failing simultaneously is orders of magnitude lower than either failing alone. This architecture is not just a compliance requirement — it is the correct engineering response to a problem with serious legal consequences.

DEA Requirements for Online TRT Dispensing

The DEA's regulatory framework for online controlled substance dispensing derives from the Controlled Substances Act, the Ryan Haight Online Pharmacy Consumer Protection Act, and implementing regulations in 21 CFR Parts 1301–1321. For TRT clinics operating an online dispensing or facilitated dispensing model, the following requirements are most operationally relevant:

Practitioner Registration

Every practitioner prescribing testosterone must hold a valid DEA registration number for Schedule III controlled substances in each state where they are prescribing. A single DEA registration number does not authorize national prescribing. Registration is state-specific, and the applicable state is the patient's state of location at the time of the prescribing encounter, not the prescriber's physical location. TRT clinics operating in multiple states must maintain, track, and verify the currency of DEA registrations for every prescribing provider in every state where they see patients.

The checkout system must verify the prescribing practitioner's DEA registration as part of the prescription validation sequence. A prescription from a provider whose DEA registration has lapsed is not a valid prescription, regardless of when it was originally issued.

The Ryan Haight Act and Telemedicine Prescribing

The Ryan Haight Online Pharmacy Consumer Protection Act prohibits prescribing controlled substances via the internet without a prior in-person medical evaluation, subject to specific exceptions. The most relevant exceptions for TRT telehealth clinics are:

The key point for checkout compliance is that the Ryan Haight Act governs when a prescription may be issued, not whether a valid prescription is required before dispensing. Regardless of which prescribing pathway was used, a valid prescription must exist and must be verified before each dispensing event. For a detailed breakdown of state-level prescribing requirements across jurisdictions, see the multi-state TRT prescribing compliance guide.

Electronic Prescribing for Controlled Substances (EPCS)

Many states now require or strongly encourage the use of Electronic Prescribing for Controlled Substances (EPCS) for Schedule III drugs. EPCS is regulated by DEA under 21 CFR Part 1311 and requires two-factor authentication for the prescriber at the time of signing. EPCS systems must be audited and certified by a DEA-approved auditor. A prescription-gated checkout system that accepts EPCS prescriptions must verify that the incoming prescription meets EPCS technical standards and that the prescriber's EPCS credentials are valid and current.

Prescription Monitoring Program Integration

Every state that participates in a Prescription Monitoring Program (PMP) — which is essentially every state — requires prescribers to query the PMP before prescribing Schedule II and III controlled substances. The query must occur before the prescription is issued, and the query result must be documented. A compliant TRT checkout system should receive prescriptions that carry evidence of a PMP query performed before issuance, or should integrate directly with PMP data sources (such as PMP InterConnect) to verify query compliance as part of the prescription validation sequence.

State-by-State Variations in Telehealth TRT Prescribing

Federal DEA requirements set the floor for TRT prescribing compliance. States impose additional requirements that vary significantly. A TRT clinic operating across multiple states must comply with the most restrictive applicable requirements for each patient encounter. The checkout system must be aware of the patient's state and enforce the applicable rules at the time of each transaction.

State In-Person Visit Required EPCS Mandatory PMP Check Required Telehealth Rx Authority Key Notes
Texas Yes (Schedule III) Yes Yes Restricted Established relationship required before any controlled substance via telehealth. TX Medical Board rules are among the most restrictive in the U.S.
New York Yes (NYSDOH guidance) Yes Yes Restricted NYSDOH has issued guidance requiring in-person evaluation for Schedule III substances. Not IMLC member. Requires out-of-state pharmacy registration.
Florida Yes (existing relationship) Yes Yes Restricted Controlled substance prescriptions require established patient-provider relationship. Strict pharmacy shipping registration requirements.
California No (telehealth OK) Yes Yes Permitted Initial telehealth evaluation permitted for TRT. Out-of-state compounders must register with CA State Board of Pharmacy.
Arizona No (telehealth OK) Encouraged Yes Permitted IMLC member. Relatively permissive telehealth framework. Standard of care documentation required.
Georgia No (telehealth OK) Encouraged Yes Permitted IMLC member. Telehealth prescribing permitted. Lab documentation required for TRT standard of care.
Illinois No (telehealth OK) Yes Yes Permitted IMLC member. EPCS mandatory. PMP integration (ILPMP) required.
Ohio No (telehealth OK) Yes Yes Permitted IMLC member. Strong telehealth parity law. EPCS and OARRS (PMP) query mandatory.
Pennsylvania No (telehealth OK) Yes Yes Permitted IMLC member. PA PMP query required. EPCS mandatory for Schedule II–IV.
North Carolina No (telehealth OK) Encouraged Yes Permitted IMLC member. NC PMP (NC CSRS) query mandatory. Generally permissive telehealth framework.

State requirements change as legislatures and medical boards update their telehealth and controlled substance rules. A compliant prescription-gated checkout system must be able to update its state-specific validation rules without requiring a software deployment. The state compliance matrix should be configuration-driven, not hardcoded, so that rule changes can be applied as regulations evolve.

Subscription Renewal and Rx Re-Verification

Many TRT clinics operate on a subscription model: patients are billed monthly or quarterly and receive ongoing testosterone shipments. The subscription model creates a specific compliance challenge that standard e-commerce platforms completely fail to address: prescription expiration.

A typical testosterone prescription is valid for 6 months, with a maximum of 5 refills permitted under most state rules. A patient who enrolls in a monthly TRT subscription in January may have a valid prescription through June. If the clinic's subscription system does not check prescription validity at each renewal, the subscription will continue billing and triggering shipments in July, August, and beyond — each of those shipments a separate violation of the Controlled Substances Act.

How Compliant Subscription Renewal Works

In a prescription-gated subscription system, renewal is a multi-step process that runs before each billing cycle:

  1. Pre-renewal prescription check (72–96 hours before billing). The system queries the prescription record for each subscription item. It checks expiration date, remaining refills, and prescription status. If the prescription will expire before the next renewal date (or has already expired), the system initiates the notification sequence immediately rather than waiting for the billing attempt to fail.
  2. Proactive patient notification. Automated messages are sent to the patient via their preferred channel (email, SMS, patient portal) informing them that their prescription is expiring and they need to schedule a follow-up consultation. The message includes a direct link to the scheduling system.
  3. Prescriber notification. A parallel notification is sent to the prescribing provider alerting them that the patient's prescription is due for renewal and that the subscription will pause if no new prescription is issued before the billing date.
  4. Renewal billing execution. On the billing date, the system re-verifies prescription validity as part of the billing process. If a new, valid prescription has been issued since the pre-renewal check, billing proceeds normally. If the prescription has expired and no renewal is in place, billing is skipped and the subscription status is set to pending_rx_renewal — not canceled.
  5. Automatic resume on new prescription. When a new prescription is issued and recorded in the system, a background job detects subscriptions in pending_rx_renewal status for which the new prescription provides coverage. The subscription resumes from the next billing cycle without patient action required.
Common Failure Pattern

Clinics using Stripe Billing or Chargebee for TRT subscriptions frequently configure automatic retry logic that retries failed payments for 3–7 days. This retry logic continues regardless of why the payment was blocked. If a payment is blocked because of an expired prescription, the retry attempts do not resolve the underlying issue. Meanwhile, if the pharmacy processes fulfillment based on the subscription schedule rather than confirmed prescription status, shipments may occur during the retry window against an expired prescription.

Audit Trail Requirements for Controlled Substance Sales

The DEA requires that every dispensing event involving a controlled substance be documented and that the records be maintained for a minimum of two years (21 CFR Part 1304). For online TRT dispensing, the audit trail must capture the complete chain of custody from prescription issuance to patient receipt. A system that can produce this record on demand — without requiring manual reconstruction — is the difference between a clinic that passes a DEA audit and one that does not.

Required Audit Trail Components

A complete controlled substance audit trail for each TRT dispensing event must include:

All of these records must be immutable — they cannot be edited or deleted after creation. The system must be able to produce a complete, ordered audit trail for any order, prescription, or patient on demand, covering the full retention period. For how lab result records integrate into this audit architecture, see the guide to testosterone lab tracking software.

Immutability Requirements

Immutability is not the default behavior of most databases. Standard database operations allow UPDATE and DELETE statements on any row. Achieving genuine immutability for audit records requires specific architectural choices:

Common Compliance Failures with Shopify and WooCommerce

The following compliance failures are documented patterns observed in TRT clinics using standard e-commerce platforms. Each represents a category of violation that prescription-gated checkout eliminates by design.

Failure 1: Orders Processed During Verification Queue Backlog

A clinic uses Shopify with a manual verification workflow. Orders enter a “review” queue. During a high-volume period (promotion launch, new patient cohort onboarding, holiday period), the review queue develops a backlog. Staff members, under pressure to clear the queue, approve orders without fully completing the verification sequence. Orders ship. Prescriptions are discovered to have been expired or mismatched days later during a routine audit.

This failure mode is not preventable through training or process improvement. Any system that relies on human execution under variable load conditions will fail at predictable rates. The solution is architectural: remove humans from the verification-to-approval decision.

Failure 2: Subscription Renewals Against Expired Prescriptions

A clinic uses WooCommerce Subscriptions for monthly testosterone billing. A patient's prescription expires after 6 months. WooCommerce Subscriptions has no awareness of prescription expiration. The subscription renews. The pharmacy, which also has no automated prescription status check, receives the renewal order and ships the medication. The clinic continues billing and shipping for months after the prescription has expired. This scenario is discovered only when a DEA audit or a patient complaint triggers investigation.

Failure 3: Multi-Product Cart with Partial Verification

A patient orders both testosterone cypionate and an ancillary compound (e.g., anastrozole) in a single cart. The staff member reviewing the order verifies the testosterone prescription but does not notice that anastrozole, while not a Schedule III substance, also requires a prescription. The ancillary compound ships without verification. While the regulatory consequence for the ancillary compound may be less severe, it illustrates how manual verification workflows systematically fail to verify every item.

Failure 4: Direct API Exploitation

A technically sophisticated patient (or a malicious actor) discovers that the clinic's WooCommerce store accepts direct REST API calls to the order creation endpoint. They bypass the checkout frontend entirely, submitting an order payload that includes whatever product they want. The order is created in the database and enters fulfillment. There is no prescription verification in the API call path because WooCommerce's API has no prescription verification concept.

This failure mode specifically illustrates why application-layer-only verification is insufficient. Without database-layer constraints, any path to order creation that bypasses the frontend can circumvent verification.

Real Enforcement Examples and Penalties

Regulatory enforcement against online TRT and compounded testosterone operations has increased significantly since 2022. The following categories of enforcement action represent documented patterns:

DEA Action

Immediate Suspension Orders

The DEA may issue an Immediate Suspension Order (ISO) against a DEA registrant when it finds an imminent danger to public health or safety. ISOs have been issued against telehealth prescribers and clinics found to be prescribing controlled substances without adequate prescription controls. An ISO suspends all controlled substance prescribing authority immediately, effectively shutting down a TRT practice pending formal proceedings.

FDA Action

Warning Letters and Injunctions

The FDA issues warning letters for selling compounded drugs without valid prescriptions, treating compounded medications as OTC products, and inadequate prescription verification controls. Warning letters are public and require a written response with a corrective action plan. Injunctions can prohibit a clinic from dispensing entirely until compliance is demonstrated.

State Board Action

License Suspension and Revocation

State medical boards and pharmacy boards have authority to suspend or revoke prescribing and dispensing licenses. Multiple states have dedicated telehealth enforcement units as of 2025. License actions are reported to the National Practitioner Data Bank, affecting a provider's ability to be credentialed in any state.

Criminal Penalties

Federal Prosecution

Dispensing a Schedule III controlled substance without a valid prescription is a federal felony under 21 U.S.C. § 841(a)(1), punishable by up to 10 years imprisonment for a first offense involving Schedule III substances. DOJ/DEA have pursued criminal referrals against telehealth executives and prescribers in operations found to be systematically dispensing without adequate prescription controls.

The enforcement trajectory is clear: regulators are treating inadequate prescription verification as a systemic compliance failure, not an administrative oversight. The clinics facing the most severe consequences are those where the verification failures were structural — where the system itself permitted non-compliant transactions rather than isolated instances of human error.

Pattern Recognized by Regulators

DEA and FDA investigators have become adept at identifying clinics using standard e-commerce platforms for controlled substance sales. The absence of prescription-level records in order data, the inability to produce a complete dispensing record linking each shipment to a specific prescription, and the presence of WooCommerce or Shopify order export formats in subpoenaed records are all red flags that trigger deeper investigation.

TRT Checkout Compliance Checklist

Prescription-Gated Checkout Compliance Checklist
  • Checkout API checks prescription validity before initiating payment for all Rx products
  • Checkout is blocked (not flagged) if prescription check fails; payment is never initiated
  • Database-layer foreign key constraint: order line items require non-null prescription reference
  • Before-insert trigger validates prescription status and expiration at write time
  • Refill counter decremented atomically on each successful order
  • No manual override path exists in the purchase flow; any administrative override is logged immutably
  • Each line item in multi-product orders is independently verified
  • Compound name, dosage, and quantity must match prescribed values exactly; no substitution logic
  • Each prescription record stores: prescriber name, DEA number, patient identity, compound name, strength, quantity, authorized refills, issue date, expiration date
  • Prescriber DEA registration status verified at checkout (not assumed valid based on prior verification)
  • Prescription status field has defined states: active, expired, revoked, suspended, refills-exhausted
  • EPCS authentication log stored with prescription record in EPCS-mandatory states
  • PMP query attestation stored with prescription record where state requires pre-prescribing query
  • Pre-renewal prescription check runs 72–96 hours before each billing cycle
  • Patient notification sent when prescription will expire before next renewal date
  • Prescriber notification sent when patient prescription is due for renewal
  • Billing is skipped (subscription paused, not canceled) if prescription has expired at renewal time
  • Subscription automatically resumes when new prescription is issued; no manual intervention required
  • Pharmacy fulfillment is not triggered by billing alone; requires confirmed prescription authorization
  • Every prescription verification attempt logged with timestamp, outcome, and checks performed
  • Every dispense event linked to specific prescription record and prescription verification event
  • Audit records stored in append-only tables with triggers preventing UPDATE and DELETE
  • Dispensing records include pharmacy name, DEA registration, lot number, dispense date, shipping tracking
  • Complete audit trail producible on demand for any order, patient, or date range
  • Records retained for minimum two years per 21 CFR Part 1304
  • Audit backup integrity verified independently and continuously
  • System is aware of patient's state and enforces state-specific requirements at checkout
  • In-person visit requirement enforcement for Texas, New York, and Florida patients
  • EPCS mandatory state list maintained and enforced in configuration (not hardcoded)
  • PMP query requirement enforced per state requirements before prescription acceptance
  • All prescribing providers have valid DEA registration in each state where they have active patients
  • Out-of-state compounding pharmacy registrations maintained for each state where patients are located