Get a person by ID

get

/Person/{ID}

List an individual person by ID.

GET /Person/:id
This operation supports the Patient authorization type.

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Request
GET https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/Person/APIUser.5

Response

{
  "resourceType": "Person",
  "id": "APIUser.5",
  "name": [
    {
      "use": "usual",
      "text": "proxy, amick",
      "family": "proxy",
      "given": [
        "amick"
      ]
    }
  ],
  "telecom": [
    {
      "system": "email",
      "value": "amick@gmail.com"
    }
  ],
  "active": true,
  "text": {
    "status": "generated",
    "div": "<div xmlns=\\"http://www.w3.org/1999/xhtml\\"><b>Person</b><br /><b>Name</b>:proxy,amick;<br />\n               <b>Contacts</b>:amick@gmail.com;<br /><b>Id</b>:APIUser.5;<br />\\r\\n</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