wellcare-health-plans Medication Request API

Prescribed medications and medication orders.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

wellcare-health-plans-medication-request-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: WellCare FHIR Patient Access Condition Medication Request API
  description: The WellCare FHIR Patient Access API enables members and authorized third-party applications to securely access and exchange health data including medical, pharmacy, dental, and vision claims and clinical information. The API supports HL7 FHIR R4 standards and SMART on FHIR authorization, providing access to up to 5 years of historical health information. Required under CMS Interoperability and Patient Access final rule (CMS-9115-F) for Medicaid and Medicare Advantage plans. Access is managed through the Centene Partner Portal at partners.centene.com/apis.
  version: '1.0'
  contact:
    url: https://www.wellcare.com/en/interoperability-and-patient-access
servers:
- url: https://partners.centene.com
tags:
- name: Medication Request
  description: Prescribed medications and medication orders.
paths:
  /fhir/r4/MedicationRequest:
    get:
      operationId: listMedicationRequests
      summary: List Medication Requests
      description: Retrieves MedicationRequest resources representing prescribed medications and medication orders for an authenticated member.
      tags:
      - Medication Request
      parameters:
      - name: patient
        in: query
        description: The FHIR Patient ID.
        required: true
        schema:
          type: string
      - name: status
        in: query
        description: Filter by medication request status (active, completed, stopped).
        schema:
          type: string
      security:
      - smartOnFhir:
        - patient/MedicationRequest.read
      responses:
        '200':
          description: Bundle of MedicationRequest resources returned.
          content:
            application/fhir+json:
              schema:
                $ref: '#/components/schemas/Bundle'
        '401':
          description: Unauthorized.
components:
  schemas:
    Bundle:
      type: object
      description: A FHIR Bundle resource containing a collection of resources.
      properties:
        resourceType:
          type: string
          example: Bundle
        id:
          type: string
        type:
          type: string
          enum:
          - searchset
          - collection
          - transaction
          - history
        total:
          type: integer
        link:
          type: array
          items:
            type: object
            properties:
              relation:
                type: string
              url:
                type: string
        entry:
          type: array
          items:
            type: object
            properties:
              fullUrl:
                type: string
              resource:
                type: object
  securitySchemes:
    smartOnFhir:
      type: oauth2
      description: SMART on FHIR OAuth 2.0 authorization for patient-facing apps.
      flows:
        authorizationCode:
          authorizationUrl: https://partners.centene.com/oauth2/authorize
          tokenUrl: https://partners.centene.com/oauth2/token
          scopes:
            patient/Patient.read: Read patient demographic data
            patient/Coverage.read: Read coverage and enrollment data
            patient/ExplanationOfBenefit.read: Read claims and EOB data
            patient/Condition.read: Read diagnosed conditions
            patient/Observation.read: Read observations and lab results
            patient/MedicationRequest.read: Read medication requests
            patient/Immunization.read: Read immunization records
            patient/Encounter.read: Read care encounters