Image Allergy Intolerance

Allergy intolerance requests and examples

Terminology Bindings

Terminology Detail
AllergyIntolerance.clinicalStatus The clinical status of the allergy.
AllergyIntolerance.verificationStatus Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (including pharmaceutical product).
AllergyIntolerance.code Code for an allergy or intolerance statement (either a positive or a negated/excluded statement). This may be a code for a substance or pharmaceutical product that is considered to be responsible for the adverse reaction risk (e.g., "Latex"), an allergy or intolerance condition (e.g., "Latex allergy"), or a negated/excluded code for a specific substance or class (e.g., "No latex allergy") or a general or categorical negated statement (e.g., "No known allergy", "No known drug allergies").

Parameters

Parameter Is Required Description
Id This, or patient. The logical resource ID associated with the resource.
Patient This, or ID The patient who has the allergy.
_revinclude No A request to include any Provenance resource in the bundle.

Requests

Allergy Intolerance by Patient

GET: 'https://api.practicestudio.net/patientportal/fhir/AllergyIntolerance?patient=Patient/{Patient_ID}'
GET: 'https://api.practicestudio.net/patientportal/fhir/AllergyIntolerance?patient={Patient_ID}'

Allergy Intolerance by Resource ID

GET: 'https://api.practicestudio.net/patientportal/fhir/AllergyIntolerance/{Resource_ID}'

Example Response

Example Allergy Intolerance JSON Response:


{
  "resourceType": "Bundle",
  "meta": {
    "lastUpdated": "2022-08-11T14:45:48.854703-05:00"
  },
  "type": "searchset",
  "total": 3,
  "link": [
    {
      "relation": "self"
    }
  ],
  "entry": [
	{
	  "resourceType": "AllergyIntolerance",
	  "id": "7",
	  "meta": {
		"lastUpdated": "0001-01-01T00:00:00-06:00",
		"profile": [
		  "http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance"
		]
	  },
	  "clinicalStatus": {
		"coding": [
		  {
			"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
			"code": "inactive",
			"display": "Inactive",
			"userSelected": false
		  }
		]
	  },
	  "verificationStatus": {
		"coding": [
		  {
			"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
			"code": "confirmed",
			"display": "Confirmed",
			"userSelected": false
		  }
		]
	  },
	  "type": "allergy",
	  "criticality": "high",
	  "code": {
		"coding": [
		  {
			"system": "http://snomed.info/sct",
			"code": "412583005",
			"display": "Bee Pollen",
			"userSelected": false
		  }
		]
	  },
	  "patient": {
		"reference": "Patient/000034"
	  }
	}
  ]
}