Get a slot by ID

get

/Slot/{ID}

Retrieves an individual slot by the associated ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example retrieval.

Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Slot/4047611-32216049-61518614-0
Example Response:
{
    'resourceType': 'Slot',
    'id': '4047611-32216049-61518614-0',
    'meta': {
      'versionId': '3423957v2380283',
      'lastUpdated': '2020-05-08T18:13:55Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Slot</b></p><p><b>Service Type</b>: Surgery Rapid</p><p><b>Start</b>: Jan 23, 2017  6:00 A.M. UTC</p><p><b>End</b>: Jan 23, 2017  7:00 A.M. UTC</p><p><b>Schedule Reference</b>: 4047611-32216049-61518614-0</p><p><b>Status</b>: Free</p></div>'
    },
    'extension': [
      {
        'valueReference': {
          'reference': 'Location/32216049'
        },
        'url': 'https://fhir-ehr.cerner.com/r4/StructureDefinition/scheduling-location'
      }
    ],
    'serviceType': [
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/14249',
            'code': '4047611',
            'display': 'Surgery Rapid',
            'userSelected': true
          },
          {
            'system': 'http://snomed.info/sct',
            'code': '394576009',
            'display': 'Accident & emergency (qualifier value)',
            'userSelected': false
          }
        ],
        'text': 'Surgery Rapid'
      }
    ],
    'schedule': {
      'reference': 'Schedule/4047611-32216049-61518614-0'
    },
    'status': 'free',
    'start': '2017-01-23T06:00:00Z',
    'end': '2017-01-23T07:00:00Z'
  }
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.

x-with-patient-auth Response

Example retrieval using patient authorization.

Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Slot/4047611-32216049-61518614-0
Example Response:
{
    'resourceType': 'Slot',
    'id': '4047611-32216049-61518614-0',
    'meta': {
      'versionId': '3423957v2380283',
      'lastUpdated': '2020-05-08T18:13:55Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Slot</b></p><p><b>Service Type</b>: Patient Friendly Display - Surgery Rapid</p><p><b>Start</b>: Jan 23, 2017  6:00 A.M. UTC</p><p><b>End</b>: Jan 23, 2017  7:00 A.M. UTC</p><p><b>Schedule Reference</b>: 4047611-32216049-61518614-0</p><p><b>Status</b>: Free</p></div>'
    },
    'extension': [
      {
        'valueReference': {
          'reference': 'Location/32216049'
        },
        'url': 'https://fhir-ehr.cerner.com/r4/StructureDefinition/scheduling-location'
      }
    ],
    'serviceType': [
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/14249',
            'code': '4047611',
            'display': 'Patient Friendly Display - Surgery Rapid',
            'userSelected': true
          },
          {
            'system': 'http://snomed.info/sct',
            'code': '394576009',
            'display': 'Accident & emergency (qualifier value)',
            'userSelected': false
          }
        ],
        'text': 'Patient Friendly Display - Surgery Rapid'
      }
    ],
    'schedule': {
      'reference': 'Schedule/4047611-32216049-61518614-0'
    },
    'status': 'free',
    'start': '2017-01-23T06:00:00Z',
    'end': '2017-01-23T07:00:00Z'
  }
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