Get a medication dispense by ID

get

/MedicationDispense/{ID}

Retrieves an individual medication dispense by the associated ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example retrieval of a medication dispense record by resource ID.
Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/MedicationDispense/5142939
Example Response:
{
        'resourceType': 'MedicationDispense',
        'id': '5142939',
        'meta': {
            'versionId': '0',
            'lastUpdated': '2018-04-24T17:30:41.000Z'
        },
        'text': {
            'status': 'generated',
            'div': '<div xmlns=\'http://www.w3.org/1999/xhtml\'><p><b>Medication Dispense</b></p><p><b>Patient</b>: TEST, MANDY CERNER</p><p><b>Medication</b>: ibuprofen 100 mg Tab</p><p><b>Authorizing Prescription</b>: MedicationRequest/301429227</p><p><b>Status</b>: Completed</p><p><b>Performers</b>: Belzer, Garrett, Organization/675844</p><p><b>Type</b>: UNIT_DOSE</p><p><b>Dispense Quantity</b>: 1.0 EA</p><p><b>Dispense Date Time</b>: unknown</p></div>'
        },
        'status': 'completed',
        'category': {
            'coding': [
                {
                    'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/4500',
                    'code': '638952',
                    'display': 'Inpatient',
                    'userSelected': true
                },
                {
                    'system': 'http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category',
                    'code': 'inpatient',
                    'display': 'Inpatient',
                    'userSelected': false
                }
            ],
            'text': 'Inpatient'
        },
        'medicationCodeableConcept': {
            'coding': [
                {
                    'system': 'http://www.nlm.nih.gov/research/umls/rxnorm',
                    'code': '198405',
                    'display': 'Ibuprofen 100 MG Oral Tablet',
                    'userSelected': false
                }
            ],
            'text': 'ibuprofen 100 mg Tab'
        },
        'subject': {
            'reference': 'Patient/12621984',
            'display': 'TEST, MANDY CERNER'
        },
        'context': {
            'reference': 'Encounter/97841411'
        },
        'performer': [
            {
                'actor': {
                    'reference': 'Practitioner/744162',
                    'display': 'Belzer, Garrett'
                }
            },
            {
                'actor': {
                    'reference': 'Organization/675844'
                }
            }
        ],
        'location': {
            'reference': 'Location/21255403',
            'display': 'Pharmacy Main'
        },
        'authorizingPrescription': [
            {
                'reference': 'MedicationRequest/301429227'
            }
        ],
        'type': {
            'coding': [
                {
                    'system': 'http://terminology.hl7.org/CodeSystem/v3-ActCode',
                    'code': 'UDE',
                    'display': 'unit dose equivalent',
                    'userSelected': false
                }
            ],
            'text': 'UNIT_DOSE'
        },
        'quantity': {
            'value': 1,
            'unit': 'EA',
            'system': 'http://unitsofmeasure.org',
            'code': '{Each}'
        },
        'whenPrepared': '2018-04-24T17:30:40.000Z',
        '_whenHandedOver': {
            'extension': [
                {
                    'valueCode': 'unknown',
                    'url': 'http://hl7.org/fhir/StructureDefinition/data-absent-reason'
                }
            ]
        },
        'dosageInstruction': [
            {
                'timing': {
                    'code': {
                        'coding': [
                            {
                                'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/4003',
                                'code': '696528',
                                'display': 'BID',
                                'userSelected': true
                            },
                            {
                                'system': 'http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation',
                                'code': 'BID',
                                'display': 'BID',
                                'userSelected': false
                            }
                        ],
                        'text': 'BID'
                    }
                },
                'route': {
                    'coding': [
                        {
                            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/4001',
                            'code': '318185',
                            'display': 'Oral',
                            'userSelected': true
                        },
                        {
                            'system': 'http://snomed.info/sct',
                            'code': '26643006',
                            'display': 'Oral route (qualifier value)',
                            'userSelected': false
                        }
                    ],
                    'text': 'Oral'
                },
                'doseAndRate': [
                    {
                        'doseQuantity': {
                            'value': 1,
                            'unit': 'EA',
                            'system': 'http://unitsofmeasure.org',
                            'code': '{Each}'
                        }
                    }
                ]
            }
        ]
  }
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