Get an observation by ID

get

/Observation/{ID}

List an individual observation by its ID.

GET /Observation/:id
This operation supports the following authorization types:
  • Provider
  • Patient

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example Request
GET https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/Observation/A879904FD2FE4B2D90C89FDA84E1285F.NRS.VS.50299
Example Response:
{
  "resourceType": "Observation",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.NRS.VS.50299",
  "status": "final",
  "meta": {
    "lastUpdated": "2021-02-04T10:38:56-05:00"
  },
  "category": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/observation-category",
          "code": "vital-signs",
          "display": "Vital Signs"
        }
      ]
    }
  ],
  "subject": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "encounter": {
    "reference": "Encounter/A879904FD2FE4B2D90C89FDA84E1285F.29019",
    "display": "Inferno,Initial"
  },
  "effectiveDateTime": "2021-02-04T10:36:00-05:00",
  "issued": "2021-02-04T10:36:00-05:00",
  "code": {
    "coding": [
      {
        "system": "http://loinc.org",
        "code": "29463-7"
      },
      {
        "system": "http://loinc.org",
        "code": "3141-9"
      }
    ],
    "text": "Weight"
  },
  "valueQuantity": {
    "system": "http://unitsofmeasure.org",
    "code": "kg",
    "value": 30,
    "unit": "kg"
  },
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>Observation</b><br />  <b>Patient</b>:Mcgovern,Astrid Santiago<br />   <b>Status</b>:final<br />   <b>Encounter</b>:Inferno,Initial<br />   <b>Category</b>:<br /> <b>System</b>:http://terminology.hl7.org/CodeSystem/observation-category <b>Code</b>:vital-signs <b>Display</b>:Vital Signs<br />   <b>Issued</b>:2021-02-04T10:36:00-05:00<br />   <b>Effective Time</b>:2021-02-04T10:36:00-05:00<br />   <b>Code</b>:<br />  <b>System</b>:http://loinc.org <b>Code</b>:29463-7 <b>Text</b>:Weight<br />  <b>System</b>:http://loinc.org <b>Code</b>:3141-9 <b>Text</b>:Weight<br />    <b>Value</b>:<br />  <b>System</b>:http://unitsofmeasure.org  <b>Code</b>:kg <b>Unit</b>:kg <b>Value</b>:30<br />     </div>"
  }
}
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