Image Care Team

Care team requests and examples

Parameters

Parameter Is Required Description
Id This, or patient. The logical resource ID associated with the resource.
Patient This, or ID The patient who has the care team.
_revinclude No A request to include any Provenance resource in the bundle.

Requests

Care Team by Patient and Status

GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam?patient=Patient/{Patient_ID}&status=proposed'
GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam?patient=Patient/{Patient_ID}&status=active'
GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam?patient=Patient/{Patient_ID}&status=suspended'
GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam?patient=Patient/{Patient_ID}&status=inactive'
GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam?patient=Patient/{Patient_ID}&status=entered-in-error'

Care Team by Resource ID

GET: 'https://api.practicestudio.net/patientportal/fhir/CareTeam/{Resource_ID}'

Example Response

Example Care Team JSON Response:


{
  "resourceType": "Bundle",
  "meta": {
    "lastUpdated": "2022-08-11T14:46:07.9051331-05:00"
  },
  "type": "searchset",
  "total": 1,
  "link": [
    {
      "relation": "self"
    }
  ],
  "entry": [
    {
      "resource": {
        "resourceType": "CareTeam",
        "id": "000034",
        "meta": {
          "lastUpdated": "0001-01-01T00:00:00-06:00",
          "profile": [
            "http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam"
          ]
        },
        "status": "proposed",
        "subject": {
          "reference": "Patient/000034",
          "display": "Lucy Taylor"
        },
        "participant": [
          {
            "role": [
              {
                "coding": [
                  {
                    "system": "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
                    "code": "UNK",
                    "display": "unknown",
                    "userSelected": false
                  }
                ]
              }
            ],
            "member": {
              "reference": "CareTeam/10000011",
              "display": "Becky Copeland"
            }
          },
          {
            "role": [
              {
                "coding": [
                  {
                    "system": "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
                    "code": "UNK",
                    "display": "unknown",
                    "userSelected": false
                  }
                ]
              }
            ],
            "member": {
              "reference": "CareTeam/10000048",
              "display": "Bryan Hill"
            }
          },
          {
            "role": [
              {
                "coding": [
                  {
                    "system": "http://nucc.org/provider-taxonomy",
                    "code": "111N00000X",
                    "display": "111N00000X",
                    "userSelected": false
                  }
                ]
              }
            ],
            "member": {
              "reference": "CareTeam/10000001",
              "display": "Sarah Johnson MD"
            }
          }
        ]
      },
      "search": {
        "mode": "match",
        "score": 1
      }
    }
  ]
}