Get a care team by ID

get

/CareTeam/{ID}

Retrieves an individual care team by the associated care team ID.

Note: The CareTeam resource returns the active care teams only.

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/CareTeam/CARE_TEAM-119078440-34768489-17490349-4048128-0-22554767
Example Response:
{
    'resourceType': 'CareTeam',
    'id': 'CARE_TEAM-119078440-34768489-17490349-4048128-0-22554767',
    'meta': {
      'versionId': '1584980008',
      'lastUpdated': '2020-03-23T16:13:28Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Care Team</b></p><p><b>Patient</b>: FHIR, FIRE3</p><p><b>Care Team Name</b>: Psychology;Blue Team</p><p><b>Status</b>: Active</p><p><b>Category</b>: Encounter-focused care team</p><p><b>Encounter</b>: 34768489</p><p><b>Participant</b>:</p><ul><li>Name: Dickey, Bo; Role: Psychologist (occupation)</li></ul></div>'
    },
    'status': 'active',
    'category': [
      {
        'coding': [
          {
            'system': 'http://loinc.org',
            'code': 'LA27976-2',
            'display': 'Encounter-focused care team'
          }
        ],
        'text': 'Encounter-focused care team'
      }
    ],
    'name': 'Psychology;Blue Team',
    'subject': {
      'reference': 'Patient/119078440',
      'display': 'FHIR, FIRE3'
    },
    'encounter': {
      'reference': 'Encounter/34768489'
    },
    'participant': [
      {
        'role': [
          {
            'coding': [
              {
                'system': 'http://snomed.info/sct',
                'code': '59944000',
                'display': 'Psychologist (occupation)'
              }
            ],
            'text': 'Psychologist (occupation)'
          }
        ],
        'member': {
          'reference': 'Practitioner/17490349',
          'display': 'Dickey, Bo'
        },
        'period': {
          'start': '2020-06-22T10:05:08Z',
          'end': '2100-12-31T00: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 of a care team using patient authorization.
Example Request:
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/CareTeam/LIFETIME_PROVIDER-4169494-0-3038500-0-0-0
Example Response:
{
    'resourceType': 'CareTeam',
    'id': 'LIFETIME_PROVIDER-4169494-0-3038500-0-0-0',
    'meta': {
      'versionId': '1606410852',
      'lastUpdated': '2020-11-26T17:14:12Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Care Team</b></p><p><b>Patient</b>: SHEPARD, JACK</p><p><b>Status</b>: Active</p><p><b>Category</b>: Longitudinal-focused care team</p><p><b>Participant</b>:</p><ul><li>Name: BASE, TEST123; Role: Primary Care Physician</li></ul></div>'
    },
    'status': 'active',
    'category': [
      {
        'coding': [
          {
            'system': 'http://loinc.org',
            'code': 'LA28865-6',
            'display': 'Longitudinal-focused care team'
          }
        ],
        'text': 'Longitudinal-focused care team'
      }
    ],
    'subject': {
      'reference': 'Patient/4169494',
      'display': 'SHEPARD, JACK'
    },
    'participant': [
      {
        'role': [
          {
            'text': 'Primary Care Physician'
          }
        ],
        'member': {
          'reference': 'Practitioner/3038500',
          'display': 'BASE, TEST123'
        },
        'period': {
          'start': '2020-06-22T10:05:08Z',
          'end': '2100-12-31T00: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