Get a device by its ID

get

/Device/{ID}

List an individual device by its ID.

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

Request

Path Parameters
  • The logical resource ID associated with the resource.
    This parameter is required if patientis not used.
    Type: token.

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/Device/A879904FD2FE4B2D90C89FDA84E1285F.9005
Example Response:
{
  "resourceType": "Device",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.9005",
  "meta": {
    "lastUpdated": "2020-11-13T17:02:40-05:00"
  },
  "status": "active",
  "type": {
    "coding": [
      {
        "system": "http://snomed.info/sct",
        "code": "700803007",
        "display": "Orthopedic prosthesis implantation instrument, reusable (physical object)"
      }
    ],
    "text": "Signature Femoral Drill Guide\r\n"
  },
  "patient": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "udiCarrier": [
    {
      "deviceIdentifier": "00880304510135",
      "carrierHRF": "(01)00880304510135(17)170301(10)08080707J"
    }
  ],
  "expirationDate": "2017-03-01T00:00:00-05:00",
  "lotNumber": "08080707J",
  "text": {
    "status": "generated",
    "div": "

Device
Patient:Mcgovern,Astrid Santiago;
Device Type:
System:http://snomed.info/sct Code:700803007 Display:Orthopedic prosthesis implantation instrument, reusable (physical object) Text:Signature Femoral Drill Guide\r\n;
Carrier HRF:(01)00880304510135(17)170301(10)08080707J;
Expiration Date:2017-03-01T00:00:00-05:00;
Lot Number:08080707J;
Status:active;
Device Identifier:00880304510135;
" } }
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