Use healthcare team templates

Team templates in Microsoft Teams allow you to quickly and easily create teams by providing a predefined team structure of settings, channels, and pre-installed apps.

For healthcare organizations, team templates can be especially powerful, as they help you to quickly deploy consistent teams across your organization. Templates also help staff to get oriented with how to effectively use Teams.

Teams includes templates designed specifically for healthcare organizations. Use these pre-built templates to quickly create teams for staff to communicate and collaborate on patient care or operational needs. In this article, we introduce you to each of these templates and recommend how to use them.

How you manage and work with team templates depends on whether you're an admin or developer.

If you're: Then, you:
An admin or IT pro Manage team templates in the Teams admin center. View team templates and apply templates policies to control which templates your staff can use in Teams for creating teams.
A developer Use Microsoft Graph to create teams from team templates.

Manage team templates in the Teams admin center

As an admin, you can manage team templates in the Microsoft Teams admin center. Here, you can view details about each template. You can also create and assign templates policies to your staff to control which templates they see in Teams for creating teams.

To learn more about team templates in general, see Get started with team templates in the Teams admin center.

We currently offer the following pre-built healthcare team templates. To view them, in the left navigation of the Teams admin center, go to Teams > Team templates.

Patient Care

Streamline healthcare communication and collaboration within a ward, pod, or department. Use this template to facilitate patient management and the operational needs of a ward. For example, post ward announcements in the Announcements channel and manage shifts in the Staffing channel.

Template type TemplateId Properties that come with this template
Patient Care healthcareWard Channels:
  • General
  • Announcements
  • Huddles
  • Rounds
  • Staffing
  • Training
Apps:
  • Approvals
  • Bulletins
  • Inspection
  • Lists
  • Shifts
  • Tasks by Planner and To Do
  • Wiki

Hospital

Streamline communication and collaboration between multiple wards, pods, and departments within a hospital. This template includes a set of channels for hospital operations, and can be extended for further customization.

Template type TemplateId Properties that come with this template
Hospital healthcareHospital Channels:
  • General
  • Announcements
  • Compliance
  • Custodial
  • Human Resources
  • Pharmacy
Apps:
  • Approvals
  • Bulletins
  • Employee ideas
  • Inspection
  • Lists
  • Shifts
  • Tasks by Planner and To Do
  • Wiki

Use team templates with Microsoft Graph

Developers can use Microsoft Graph to create teams from pre-built team templates. To learn more about using team templates with Microsoft Graph, see Get started with team templates using Microsoft Graph, Microsoft Teams API overview, and teamsTemplate resource type.

Here are the pre-built healthcare team templates.

Patient Care

This template is meant for communication and collaboration within a ward, pod, or department. Use this template to facilitate patient management and the operational needs of a ward. For example, ward announcements can be posted in the Announcements channel and shifts can be managed in Staffing. If you're looking to streamline your ward operations, then this template is for you.

Template Type TemplateId Template channels
Healthcare - Ward https://graph.microsoft.com/beta/teamsTemplates('healthcareWard') General
Announcements²
Huddles²
Rounds²
Staffing²
Training²

²Auto-favorited channels

Hospital

This template is meant for communication and collaboration between multiple wards, pods, and departments within a hospital. It includes several operational channels such as Announcements, Custodial, and Pharmacy. We also provide a script that you can use to extend the template with more departments or specialty channels. You can edit it to fit your needs.

For example, if you have an Endocrinology department, but don't need a channel for Ophthalmology, you can adapt the script to include an Endocrinology channel and remove the Ophthalmology channel. We recommend that these specialty or ward-modeled channels not be auto-favorited to avoid notification saturation. Users generally favorite any channels that they find relevant.

Template type TemplateId Template channels
Healthcare - Hospital https://graph.microsoft.com/beta/teamsTemplates('healthcareHospital') General
Announcements²
Compliance²
Custodial
Human Resources
Pharmacy

²Auto-favorited channels

How to use team templates with Microsoft Graph

To use these templates, change the 'template@odata.bind' property in the request body from 'standard' to the TemplateIds above. For more information on how to deploy team templates, see the Microsoft Graph article on how to create a team.

Note

The channels in the template will be automatically created under the General tab.

Example: Hospital template extension script

{ 
          "template@odata.bind": "https://graph.microsoft.com/beta/teamsTemplates('healthcareHospital')",
          "DisplayName": "Contoso Hospital",
          "Description": "Team for all staff in Contoso Hospital",
          "Channels": [
            {
              "displayName": "Ambulatory",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Anesthesiology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Cardiology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "CCU",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Ear, Nose, and Throat",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Emergency Care",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Family Medicine",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Gynecology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "ICU",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Mother-Baby",
              "IsFavoriteByDefault": false
            }, 
            {
              "displayName": "Neonatal",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Neurology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Oncology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Ophthalmology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "PACU",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Psychiatric",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Radiology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Rehabilitation",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Surgical",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Urology",
              "IsFavoriteByDefault": false
            },
            {
              "displayName": "Women's Health",
              "IsFavoriteByDefault": false
            }
          ],
          "Apps": [
            {
              "Id": "1542629c-01b3-4a6d-8f76-1938b779e48d"
            }
          ]
          }