Get a diagnostic report by ID

get

/DiagnosticReport/{ID}

List an individual DiagnosticReport resource by its ID.

GET /DiagnosticReport/: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/DiagnosticReport/A879904FD2FE4B2D90C89FDA84E1285F.RAD.18221

Example Response:
{
  "resourceType": "DiagnosticReport",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.RAD.18221",
  "meta": {
    "lastUpdated": "2020-12-03T18:21:12-05:00"
  },
  "status": "final",
  "category": [
    {
      "coding": [
        {
          "system": "http://loinc.org",
          "code": "LP29684-5",
          "display": "Radiology"
        }
      ]
    }
  ],
  "code": {
    "coding": [
      {
        "system": "http://loinc.org",
        "code": "18782-3",
        "display": "Radiology Study observation (narrative)"
      }
    ],
    "text": "Radiology Study Observation"
  },
  "subject": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "encounter": {
    "reference": "Encounter/A879904FD2FE4B2D90C89FDA84E1285F.29019",
    "display": "Inferno,Initial"
  },
  "effectiveDateTime": "2020-12-01T08:15:00-05:00",
  "issued": "2020-12-03T18:21:12-05:00",
  "performer": [
    {
      "reference": "Organization/RES.1",
      "display": "Mid-town Laboratories"
    }
  ],
  "presentedForm": [
    {
      "contentType": "text/plain",
      "data": "Tm8gcGFyYXNwaW5hbCBzb2Z0IHRpc3N1ZSBtYXNzLg0K"
    }
  ],
  "text": {
    "status": "generated",
    "div": "
DiagnosticReport
Patient:Mcgovern,Astrid Santiago;
Status:final;
Category:
System:http://loinc.org Code:LP29684-5 Display:Radiology ;
Code:
System:http://loinc.org Code:18782-3 Display:Radiology Study observation (narrative) Text:Radiology Study Observation;
EffectiveDateTime:2020-12-01T08:15:00-05:00;
" } }
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