Get a condition by ID

get

/Condition/{ID}

Retrieves an individual condition by the associated condition ID.

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

This operation supports the following authorization types:
  • Provider
  • Patient
  • System
Example Request:
GET https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/Condition/00a5d6eb-c567-42f7-be07-53804cece075
Example Response:
{
  "fullUrl": "https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/Condition/00a5d6eb-c567-42f7-be07-53804cece075",
  "resource": {
    "resourceType": "Condition",
    "id": "00a5d6eb-c567-42f7-be07-53804cece075",
    "meta": {
      "versionId": "00a5d6eb-c567-42f7-be07-53804cece075",
      "lastUpdated": "2020-07-06T19:36:23.000Z",
      "security": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
          "code": "PHY",
          "display": "physician requested information sensitivity",
          "userSelected": false
        },
        {
          "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
          "code": "PRS",
          "display": "patient requested information sensitivity",
          "userSelected": false
        }
      ]
    },
    "text": {
      "status": "generated",
      "div": "<div><p><b>Condition</b></p><p><b>Patient</b>: SMART, NANCY</p><p><b>Health Concern</b>: Afraid my community will not be as close with COVID19.</p><p><b>Clinical Status</b>: Active</p><p><b>Verification Status</b>: Confirmed</p><p><b>Onset</b>: Jul  6, 2020</p><p><b>Resolved</b>: False</p></div>"
    },
    "patient": {
      "reference": "Patient/12724066",
      "display": "SMART, NANCY"
    },
    "dateRecorded": "2020-07-06",
    "code": {
      "text": "Afraid my community will not be as close with COVID19."
    },
    "category": {
      "coding": [
        {
          "system": "http://argonaut.hl7.org",
          "code": "health-concern",
          "display": "Health Concern"
        }
      ],
      "text": "Health Concern"
    },
    "clinicalStatus": "active",
    "verificationStatus": "confirmed",
    "onsetDateTime": "2020-07-06",
    "abatementBoolean": false,
    "notes": "Concerns with impact of COVID19 on community."
  }
}
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