Get a care team by ID

get

/CareTeam/{ID}

List an individual CareTeam resource by its ID.

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

Request

Path Parameters
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/CareTeam/A879904FD2FE4B2D90C89FDA84E1285F.LCC
Example Response:
{
  "resourceType": "CareTeam",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.LCC",
  "meta": {
    "lastUpdated": "2020-11-11T20:50:58-05:00"
  },
  "status": "active",
  "subject": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "category": [
    {
      "coding": [
        {
          "system": "http://loinc.org",
          "code": "LA28865-6",
          "display": "Longitudinal care-coordination focused care team"
        }
      ]
    }
  ],
  "participant": [
    {
      "role": [
        {
          "text": "Primary Physician"
        }
      ],
      "member": {
        "reference": "Practitioner/A06BB34813644589BA7E50D8DDC8EFAA",
        "display": "McFadden,John"
      }
    }
  ],
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>CareTeam</b><br /><b>Patient</b>:Mcgovern,Astrid Santiago
<b>Status</b>:active<br /><b>Category</b>:<b>System</b>:http://loinc.org <b>Code</b>:LA28865-6 <b>Display</b>:Longitudinal care-coordination focused care team<br /><b>Role</b>:<b>Text</b>:Primary Physician<br /><b>CareTeam Member</b>:McFadden,John<br /><br /></div>" } }
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