Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new SchedulingGroup
{
DisplayName = "Cashiers",
IsActive = true,
UserIds = new List<string>
{
"c5d0c76b-80c4-481c-be50-923cd8d680a1",
"2a4296b3-a28a-44ba-bc66-0274b9b95851",
},
AdditionalData = new Dictionary<string, object>
{
{
"code" , "CashierCode"
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Teams["{team-id}"].Schedule.SchedulingGroups.PostAsync(requestBody);
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
SchedulingGroup schedulingGroup = new SchedulingGroup();
schedulingGroup.setDisplayName("Cashiers");
schedulingGroup.setIsActive(true);
LinkedList<String> userIds = new LinkedList<String>();
userIds.add("c5d0c76b-80c4-481c-be50-923cd8d680a1");
userIds.add("2a4296b3-a28a-44ba-bc66-0274b9b95851");
schedulingGroup.setUserIds(userIds);
HashMap<String, Object> additionalData = new HashMap<String, Object>();
additionalData.put("code", "CashierCode");
schedulingGroup.setAdditionalData(additionalData);
SchedulingGroup result = graphClient.teams().byTeamId("{team-id}").schedule().schedulingGroups().post(schedulingGroup);
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.scheduling_group import SchedulingGroup
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = SchedulingGroup(
display_name = "Cashiers",
is_active = True,
user_ids = [
"c5d0c76b-80c4-481c-be50-923cd8d680a1",
"2a4296b3-a28a-44ba-bc66-0274b9b95851",
],
additional_data = {
"code" : "CashierCode",
}
)
result = await graph_client.teams.by_team_id('team-id').schedule.scheduling_groups.post(request_body)