Get a specimen by ID

get

/Specimen/{ID}

Retrieves an individual specimen by the associated specimen ID.

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

This operation supports the following authorization types: Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Specimen/275745679
Example Response:
 {
  "resourceType": "Specimen",
  "id": "275745679",
  "meta": {
    "versionId": "3",
    "lastUpdated": "2023-02-21T20:49:00Z"
  },
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Specimen</b></p><p><b>Accession Identifier</b>: 000002023052000004</p><p><b>Type</b>: Blood specimen (specimen)</p><p><b>Container</b>: Aerobic blood culture bottle (physical object)</p></div>"
  },
  "accessionIdentifier": {
    "use": "official",
    "type": {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
          "code": "ACSN",
          "display": "Accession ID"
        }
      ],
      "text": "Accession ID"
    },
    "value": "000002023052000004"
  },
  "type": {
    "coding": [
      {
        "system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/2052",
        "code": "1765",
        "userSelected": false
      },
      {
        "system": "http://snomed.info/sct",
        "code": "119297000",
        "display": "Blood specimen (specimen)",
        "userSelected": false
      }
    ]
  },
  "subject": {
    "reference": "Patient/12783130"
  },
  "receivedTime": "2023-02-21T20:25:00Z",
  "collection": {
    "collector": {
      "reference": "Practitioner/12742563"
    },
    "collectedDateTime": "2023-02-21T13:50:00Z"
  },
  "container": [
    {
      "id": "275745680",
      "identifier": [
        {
          "use": "official",
          "type": {
            "coding": [
              {
                "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                "code": "ACSN",
                "display": "Accession ID"
              }
            ],
            "text": "Accession ID"
          },
          "value": "000002023052000004"
        }
      ],
      "type": {
        "coding": [
          {
            "system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/2051",
            "code": "2569819877",
            "userSelected": false
          },
          {
            "system": "http://snomed.info/sct",
            "code": "767385003",
            "display": "Aerobic blood culture bottle (physical object)",
            "userSelected": false
          }
        ]
      }
    }
  ]
} 
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