Get a practitioner by ID

get

/Practitioner/{ID}

List an individual Practitioner resource by its resource ID.

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

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/Practitioner/DF2821C049CC47E6A37C6B796DF4CF1D
Example Response:

{
  "resourceType": "Practitioner",
  "id": "DF2821C049CC47E6A37C6B796DF4CF1D",
  "meta": {
    "lastUpdated": "2021-01-07T13:56:11-05:00"
  },
  "name": [
    {
      "use": "official",
      "text": "Godziszewski,Janet Kris",
      "family": "Godziszewski",
      "given": [
        "Janet",
        "Kris"
      ],
      "suffix": [
        "MD"
      ]
    }
  ],
  "active": true,
  "identifier": [
    {
      "system": "http://hl7.org/fhir/sid/us-npi",
      "value": "7051690262"
    }
  ],
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>Practitioner</b><br /><b>Practitioner</b>:Godziszewski,Janet Kris<br /><b>Status</b>:Active<br /><b>Identifier:</b><b>System</b>:http://hl7.org/fhir/sid/us-npi,Value</b>:7051690262
</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