Get a device by ID
get
/Device/{ID}
Retrieves an individual device by device ID.
Authorization Types
This operation supports the following authorization types:
Request
Path Parameters
-
ID(required): string
The logical resource ID.
Header Parameters
-
accept(required): string
The media type to be requested. See what the resource's operation produces for what is supported.
Response
Supported Media Types
- application/json+fhir
Default Response
This operation supports the following authorization types:
Example Request:
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Device/31539245
Example Response:
{
"resourceType": "Device",
"id": "31539245",
"meta": {
"versionId": "1",
"lastUpdated": "2020-07-06T23:58:35.000Z"
},
"text": {
"status": "generated",
"div": "<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Device</b></p><p><b>Unique Device Identifier (UDI)</b>: 1721123408</p><p><b>Status</b>: Active</p><p><b>Manufacturer</b>: Pacemaker Plus</p><p><b>Manufacture Date</b>: Jan 9, 2017 12:00 P.M. UTC</p><p><b>Expiration Date</b>: Jul 2, 2040 10:00 A.M. UTC</p><p><b>Lot Number</b>: 7723</p><p><b>Serial Number</b>: 17642857292</p><p><b>Type</b>: Pacemaker</p><p><b>Model Number</b>: T0765</p><p><b>Patient</b>: SMART, NANCY</p><p><b>Owner</b>: Model Clinic</p></div>"
},
"udiCarrier": [
{
"carrierHRF": "1721123408"
}
],
"status": "active",
"manufacturer": "Pacemaker Plus",
"manufactureDate": "2017-01-09T12:00:00.000Z",
"expirationDate": "2040-07-02T10:00:00.000Z",
"lotNumber": "7723",
"serialNumber": "17642857292",
"deviceName": [
{
"name": "Pacemaker",
"type": "user-friendly-name"
}
],
"modelNumber": "T0765",
"type": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "14106009",
"display": "Cardiac pacemaker implant"
}
],
"text": "Pacemaker"
},
"patient": {
"reference": "Patient/12724066",
"display": "SMART, NANCY"
},
"owner": {
"display": "Model Clinic"
}
}
Headers
-
X-Request-Id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
X-Request-Id
, if present. -
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
opc-Request-Id
, if present.
x-entered-in-error Response
Example Request:
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Device/22118346
Example Response:
{
"resourceType": "Device",
"id": "22118346",
"meta": {
"versionId": "1",
"lastUpdated": "2018-11-27T04:59:58Z"
},
"text": {
"status": "generated",
"div": "<div xmlns=\\"http://www.w3.org/1999/xhtml\\"><p><b>Device</b></p><p><b>Status</b>: Entered in Error</p><p><b>Type</b>: Error</p><p><b>Patient</b>: MARSTON, JACK</p></div>"
},
"status": "entered-in-error",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/data-absent-reason",
"code": "error",
"display": "Error"
}
],
"text": "Error"
},
"patient": {
"reference": "Patient/166045489",
"display": "MARSTON, JACK"
}
}