Get a medication statement by ID

get

/MedicationStatement/{ID}

Retrieves an individual medication statement by the associated ID.

Authorization Types

This operation supports the following authorization types:

  • Provider
  • Patient
  • System

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example retrieval.
Example Request:
GET https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/MedicationStatement/309799821
Example Response:
{
    'resourceType': 'MedicationStatement',
    'id': '309799821',
    'meta': {
      'versionId': '1',
      'lastUpdated': '2020-03-20T01:00:37.000Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div><p><b>Medication Statement</b></p><p><b>Patient Name</b>: SMART, JOE</p><p><b>Medication Name</b>: levoFLOXacin</p><p><b>Dosage Instructions</b>: 728 mg = 145.6 mL, IV Piggyback, Daily</p><p><b>Status</b>: Active</p><p><b>Taken</b>: Yes</p></div>'
    },
    'extension': [
      {
        'url': 'https://fhir-ehr.cerner.com/dstu2/StructureDefinition/medication-statement-category',
        'valueCodeableConcept': {
          'coding': [
            {
              'system': 'http://hl7.org/fhir/medication-statement-category',
              'code': 'inpatient',
              'display': 'Inpatient'
            }
          ],
          'text': 'Inpatient'
        }
      }
    ],
    'patient': {
      'reference': 'Patient/12724067',
      'display': 'SMART, JOE'
    },
    'informationSource': {
      'reference': 'Practitioner/4122622',
      'display': 'Cerner Test, Physician - Hospitalist Cerner'
    },
    'dateAsserted': '2020-03-05T11:26:02.000-06:00',
    'status': 'active',
    'wasNotTaken': false,
    'effectivePeriod': {
      'start': '2020-03-05T11:26:00.000-06:00'
    },
    'supportingInformation': [
      {
        'reference': 'MedicationOrder/309799821'
      }
    ],
    'medicationCodeableConcept': {
      'coding': [
        {
          'system': 'http://www.nlm.nih.gov/research/umls/rxnorm',
          'code': '82122',
          'display': 'Levofloxacin',
          'userSelected': false
        }
      ],
      'text': 'levoFLOXacin'
    },
    'dosage': [
      {
        'text': '728 mg = 145.6 mL, IV Piggyback, Daily',
        '_text': {
          'extension': [
            {
              'url': 'https://fhir-ehr.cerner.com/dstu2/StructureDefinition/patient-friendly-display',
              'valueString': 'IV Piggyback every day. Refills: 0.'
            }
          ]
        },
        'timing': {
          'repeat': {
            'boundsPeriod': {
              'start': '2020-03-05T11:26:00.000-06:00'
            }
          },
          'code': {
            'coding': [
              {
                'system': 'http://hl7.org/fhir/timing-abbreviation',
                'code': 'QD',
                'display': 'QD',
                'userSelected': false
              }
            ],
            'text': 'Daily'
          }
        },
        'route': {
          'coding': [
            {
              'system': 'http://ncimeta.nci.nih.gov',
              'code': 'C38279',
              'display': 'INTRAVENOUS DRIP',
              'userSelected': false
            },
            {
              'system': 'http://snomed.info/sct',
              'code': '47625008',
              'display': 'Intravenous route (qualifier value)',
              'userSelected': false
            }
          ],
          'text': 'IV Piggyback'
        },
        'quantityQuantity': {
          'value': 728.0,
          'unit': 'mg',
          'system': 'http://unitsofmeasure.org',
          'code': 'mg'
        }
      }
    ]
  }
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the X-Request-Id, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the opc-Request-Id, if present.
Back to Top