Skip to content

Latest commit

 

History

History
81 lines (66 loc) · 4.01 KB

File metadata and controls

81 lines (66 loc) · 4.01 KB
title schedulingGroup resource type
description A logical grouping of members in the schedule (usually by role).
author shanemalone
ms.localizationpriority high
ms.subservice teams
doc_type resourcePageType
ms.date 07/08/2024

schedulingGroup resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

A logical grouping of users in a schedule (usually by role).

Methods

Method Return Type Description
Create schedulingGroup Create a new schedulingGroup.
List schedulingGroup collection Get the list of schedulingGroups in a schedule.
Get schedulingGroup Get a schedulingGroup by ID.
Replace schedulingGroup Replace a schedulingGroup.
Delete None Mark schedulingGroup as inactive.

Properties

Property Type Description
code string The code for the schedulingGroup to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters.
createdDateTime DateTimeOffset The time stamp in which this schedulingGroup was first created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
displayName string The display name for the schedulingGroup. Required.
id string ID of the schedulingGroup.
isActive bool Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.
lastModifiedBy identitySet The identity that last updated this schedulingGroup.
lastModifiedDateTime DateTimeOffset The time stamp in which this schedulingGroup was last updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
userIds collection(string) The list of user IDs that are a member of the schedulingGroup. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "id": "string (identifier)",
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "displayName": "String",
  "isActive": true,
  "userIds": ["String (identifier)"],
  "lastModifiedBy":{"@odata.type":"microsoft.graph.identitySet"},
  "code": "String"
}