Get an allergy intolerance by ID

get

/AllergyIntolerance/{ID}

Retrieves an individual allergy intolerance 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/AllergyIntolerance/12760025
Example Response:
{
    'resourceType': 'AllergyIntolerance',
    'id': '12760025',
    'meta': {
      'versionId': '12760025',
      'lastUpdated': '2020-03-04T20:16:02.000Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div><p><b>Allergy Intolerance</b></p><p><b>Patient</b>: SMART, SANDY A</p><p><b>Allergy</b>: Egg</p><p><b>Status</b>: Active</p><p><b>Criticality</b>: High Risk</p><p><b>Category</b>: Food</p><p><b>Reactions</b>: Breathing abnormal</p><p><b>Onset</b>: Dec 2019</p></div>'
    },
    'onset': '2019-12',
    'recordedDate': '2020-03-04T14:16:02.000-06:00',
    'patient': {
      'reference': 'Patient/12742399',
      'display': 'SMART, SANDY A'
    },
    'substance': {
      'coding': [
        {
          'system': 'http://snomed.info/sct',
          'code': '102263004',
          'display': 'Eggs (edible) (substance)',
          'userSelected': false
        }
      ],
      'text': 'Egg'
    },
    'status': 'active',
    'criticality': 'CRITH',
    'type': 'allergy',
    'category': 'food',
    'reaction': [
      {
        'id': '12760027',
        'manifestation': [
          {
            'coding': [
              {
                'system': 'http://snomed.info/sct',
                'code': '386813002',
                'display': 'Abnormal breathing (finding)',
                'userSelected': false
              }
            ],
            'text': 'Breathing abnormal'
          }
        ]
      }
    ]
  }
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