Get an allergy intolerance by ID

get

/AllergyIntolerance/{ID}

List an individual AllergyIntolerance resource by its ID.

GET /AllergyIntolerance/:id
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 Request
GET https://fhir-myrecord-sc.sandboxcerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/AllergyIntolerance/A879904FD2FE4B2D90C89FDA84E1285F.ALG.17073

Example Response:
{
  "resourceType": "AllergyIntolerance",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.ALG.17073",
  "meta": {
    "lastUpdated": "2020-11-11T20:40:37-05:00"
  },
  "verificationStatus": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
        "code": "confirmed",
        "display": "Confirmed"
      }
    ]
  },
  "clinicalStatus": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
        "code": "active",
        "display": "Active"
      }
    ]
  },
  "category": [
    "medication"
  ],
  "code": {
    "coding": [
      {
        "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
        "code": "1191",
        "display": "Aspirin"
      }
    ],
    "text": "aspirin"
  },
  "patient": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "onsetString": "unknown",
  "reaction": [
    {
      "manifestation": [
        {
          "text": "Bleeding"
        }
      ],
      "severity": "severe"
    }
  ],
  "text": {
    "status": "generated",
    "div": "

Allergy Intolerance
Patient:Mcgovern,Astrid Santiago
Clinical Status: Code:active Display:Active System:http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
Verification Status: Code:confirmed Display:Confirmed System:http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
Category:medication
Code:Code:1191 Display:Aspirin System:http://www.nlm.nih.gov/research/umls/rxnorm Text:aspirin
Onset:unknown
Reaction:Text:Bleeding Severity:severe

" } }
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the `X-Request-Id`, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the `opc-Request-Id`, if present.
Back to Top