Get an encounter by ID

get

/Encounter/{ID}

List an individual Encounter resource by its ID.

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

Notes

Encounter.location.location is always returned as a reference to a contained Location resource.

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/Encounter/A879904FD2FE4B2D90C89FDA84E1285F.29019
Example Response:
{
  "resourceType": "Encounter",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.29019",
  "meta": {
    "lastUpdated": "2021-01-21T15:08:01-05:00"
  },
  "status": "in-progress",
  "class": {
    "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
    "code": "IMP",
    "display": "inpatient encounter"
  },
  "subject": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "period": {
    "start": "2020-04-15T16:42:00-04:00"
  },
  "location": [
    {
      "location": {
        "reference": "#35202"
      }
    }
  ],
  "serviceProvider": {
    "reference": "Organization/HCU.1",
    "display": "Health Enterprise"
  },
  "type": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason",
          "code": "unknown",
          "display": "Unknown"
        }
      ]
    }
  ],
  "reasonCode": [
    {
      "text": "Pain left side of the body"
    }
  ],
  "participant": [
    {
      "type": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
              "code": "ATND",
              "display": "attender"
            }
          ],
          "text": "Attending Doctor"
        }
      ],
      "period": {
        "start": "2020-11-11T20:53:00-05:00"
      },
      "individual": {
        "reference": "Practitioner/DF2821C049CC47E6A37C6B796DF4CF1D"
      }
    },
    {
      "type": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
              "code": "CON",
              "display": "consultant"
            }
          ],
          "text": "Consulting Doctor"
        }
      ],
      "period": {
        "start": "2020-11-11T20:53:00-05:00"
      },
      "individual": {
        "reference": "Practitioner/4F69EC72C5AA48988E5E73832887E634"
      }
    },
    {
      "type": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
              "code": "CON",
              "display": "consultant"
            }
          ],
          "text": "Consulting Doctor"
        }
      ],
      "period": {
        "start": "2020-11-11T20:53:00-05:00"
      },
      "individual": {
        "reference": "Practitioner/D8A9F3EADBE041688ADD843BBD98CAB0"
      }
    },
    {
      "type": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
              "code": "ADM",
              "display": "admitter"
            }
          ],
          "text": "Admitting Doctor"
        }
      ],
      "period": {
        "start": "2020-11-11T20:53:00-05:00"
      },
      "individual": {
        "reference": "Practitioner/DF2821C049CC47E6A37C6B796DF4CF1D"
      }
    }
  ],
  "contained": [
    {
      "resourceType": "Location",
      "name": "Inferno",
      "id": "35202",
      "status": "active",
      "telecom": [
        {
          "system": "phone",
          "value": "6102196300"
        },
        {
          "system": "fax",
          "value": "6102196300"
        }
      ],
      "address": {
        "use": "work",
        "text": "53 Valley Stream Parkway,Malvern,PA,19355,United States",
        "line": [
          "53 Valley Stream Parkway"
        ],
        "city": "Malvern",
        "state": "PA",
        "postalCode": "19355",
        "country": "United States"
      },
      "managingOrganization": {
        "reference": "Organization/HCU.1",
        "display": "Health Enterprise"
      }
    }
  ],
  "text": {
    "status": "generated",
    "div": "<div xmlns='http://www.w3.org/1999/xhtml'><b>Encounter</b><br /><b>Patient</b>:Mcgovern,Astrid Santiago;<br /><b>Status</b>:in-progress;<br /><b>Class</b>:inpatient encounter;<br /><b>Period Start Date</b>:2020-04-15T16:42:00-04:00;<br /><b>Service Provider</b>:Health Enterprise;<br /><b>Type</b>:<br /><b>System</b>:http://terminology.hl7.org/CodeSystem/data-absent-reason <b>Code</b>:unknown <b>Display</b>:Unknown ;<br /><b>Reason for Encounter - Chief Complaint</b>:Pain left side of the body;<br /><b>Location</b>:Inferno 53 Valley Stream Parkway,Malvern,PA,19355,United States;<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