Get a person by ID

get

/Person/{ID}

Retrieves a person by the associated ID.

Oracle Health Millennium Platform supports the ability to logically merge a person record into another person record when both records are describing the same person. This merge is known as a person combine. If necessary, you can perform a person uncombine to undo the merge. When the requested person record is combined into another record, an inactive person entry is returned with a link to the current person entry. Entries for combined patients are only returned when retrieving the entries directly by ID. They are not returned when searching with other parameters.

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/json+fhir)
{
    "resourceType":"Person",
    "id":"12724067",
    "meta":{
        "versionId":"6",
        "lastUpdated":"2020-03-30T19:43:17.000Z"
    },
    "text":{
        "status":"generated",
        "div":"<div><p><b>Person</b></p><p><b>Name</b>: SMART, JOE</p><p><b>DOB</b>: Apr 29, 1976</p><p><b>Administrative Gender</b>: Male</p><p><b>Status</b>: Active</p></div>"
    },
    "name":[
        {
            "use":"official",
            "text":"SMART, JOE",
            "family":[
                "SMART"
            ],
            "given":[
                "JOE"
            ],
            "period":{
                "start":"2019-12-26T15:14:12.000Z"
            }
        }
    ],
    "telecom":[
        {
            "system":"phone",
            "value":"8168888886",
            "use":"home",
            "period":{
                "start":"2019-12-26T15:14:12.000Z"
            }
        }
    ],
    "gender":"male",
    "birthDate":"1976-04-29",
    "address":[
        {
            "use":"home",
            "text":"12345 Main St\\nKansas city, MO 64116\\nUS",
            "line":[
                "12345 Main St"
            ],
            "city":"Kansas city",
            "district":"Jackson",
            "state":"MO",
            "postalCode":"64116",
            "country":"US",
            "period":{
                "start":"2019-12-26T15:13:36.000Z"
            }
        }
    ],
    "active":true
}

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/Procedure/2572382193
Example Response:
{
  "resourceType": "Person",
  "id": "12724067",
  "meta": {
    "versionId": "10",
    "lastUpdated": "2020-07-06T21:21:22.000Z"
  },
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Person</b></p><p><b>Status</b>: Active</p><p><b>Name</b>: SMART, JOE</p><p><b>DOB</b>: Apr 29, 1976</p><p><b>Administrative Gender</b>: Male</p></div>"
  },
  "identifier": [
    {
      "id": "CI-490525912-3",
      "use": "usual",
      "type": {
        "coding": [
          {
            "system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/4",
            "code": "10",
            "display": "MRN",
            "userSelected": true
          },
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "MR",
            "display": "Medical record number",
            "userSelected": false
          }
        ],
        "text": "MRN"
      },
      "system": "urn:oid:2.16.840.1.113883.6.1000",
      "value": "31577"
    }
  ],
  "name": [
    {
      "id": "CI-12724067-0",
      "use": "official",
      "text": "SMART, JOE",
      "family": "SMART",
      "given": [
        "JOE"
      ],
      "period": {
        "start": "2019-12-26T15:14:12.000Z"
      }
    }
  ],
  "telecom": [
    {
      "id": "CI-PH-29811920-0",
      "extension": [
        {
          "valueUrl": "(816)888-8886",
          "url": "http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address"
        }
      ],
      "system": "phone",
      "value": "8168888886",
      "use": "home",
      "rank": "1",
      "period": {
        "start": "2019-12-26T15:14:12.000Z"
      }
    },
    {
      "id": "CI-EM-29822662-0",
      "system": "email",
      "value": "joesmart@example.com",
      "use": "home",
      "rank": "1",
      "period": {
        "start": "2020-03-30T19:31:11.000Z"
      }
    }
  ],
  "gender": "male",
  "birthDate": "1976-04-29",
  "address": [
    {
      "id": "CI-24313553-0",
      "use": "home",
      "text": "12345 Main St\\nKansas City, MO 64116\\nUS",
      "line": [
        "12345 Main St"
      ],
      "city": "Kansas City",
      "district": "Jackson",
      "state": "MO",
      "postalCode": "64116",
      "country": "US",
      "period": {
        "start": "2019-12-26T15:13:36.000Z"
      }
    }
  ],
  "active": true
}
Headers
Back to Top