@pnp/graph/teams¶
The ability to manage Team is a capability introduced in the 1.2.7 of @pnp/graph. Through the methods described you can add, update and delete items in Teams.
Teams the user is a member of¶
import { graph } from "@pnp/graph";
import "@pnp/graph/users"
import "@pnp/graph/teams"
const joinedTeams = await graph.users.getById('99dc1039-eb80-43b1-a09e-250d50a80b26').joinedTeams();
const myJoinedTeams = await graph.me.joinedTeams();
Get Teams by Id¶
Using the teams.getById() you can get a specific Team.
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const team = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528')();
Create new Team/Group - Method #1¶
The first way to create a new Team and corresponding Group is to first create the group and then create the team. Follow the example in Groups to create the group and get the GroupID. Then make a call to create the team from the group.
Create a Team via a specific group¶
Here we get the group via id and use createTeam
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
import "@pnp/graph/groups"
const createdTeam = await graph.groups.getById('679c8ff4-f07d-40de-b02b-60ec332472dd').createTeam({
"memberSettings": {
"allowCreateUpdateChannels": true
},
"messagingSettings": {
"allowUserEditMessages": true,
"allowUserDeleteMessages": true
},
"funSettings": {
"allowGiphy": true,
"giphyContentRating": "strict"
}});
Create new Team/Group - Method #2¶
The second way to create a new Team and corresponding Group is to do so in one call. This can be done by using the createTeam method.
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const team = {
"template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
"displayName": "PnPJS Test Team",
"description": "PnPJS Test Team’s Description",
"members": [
{
"@odata.type": "#microsoft.graph.aadUserConversationMember",
"roles": ["owner"],
"user@odata.bind": "https://graph.microsoft.com/v1.0/users('{owners user id}')",
},
],
};
const createdTeam: ITeamCreateResultAsync = await graph.teams.create(team);
//To check the status of the team creation, call getOperationById for the newly created team.
const createdTeamStatus = await graph.teams.getById(createdTeam.teamId).getOperationById(createdTeam.operationId);
Clone a Team¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const clonedTeam = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').cloneTeam(
'Cloned','description','apps,tabs,settings,channels,members','public');
Get Teams Async Operation¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const clonedTeam = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').cloneTeam(
'Cloned','description','apps,tabs,settings,channels,members','public');
const clonedTeamStatus = await graph.teams.getById(clonedTeam.teamId).getOperationById(clonedTeam.operationId);
Archive a Team¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const archived = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').archive();
Unarchive a Team¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const archived = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').unarchive();
Get all channels of a Team¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const channels = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').channels();
Get channel by Id¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const channel = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').channels.getById('19:65723d632b384ca89c81115c281428a3@thread.skype')();
Create a new Channel¶
import { graph } from "@pnp/graph";
const newChannel = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').channels.create('New Channel', 'Description');
Get installed Apps¶
import { graph } from "@pnp/graph";
const installedApps = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').installedApps();
Add an App¶
import { graph } from "@pnp/graph";
const addedApp = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').installedApps.add('https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a');
Remove an App¶
import { graph } from "@pnp/graph";
const removedApp = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').installedApps.remove();
Get Tabs from a Channel¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const tabs = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').
channels.getById('19:65723d632b384ca89c81115c281428a3@thread.skype').tabs();
Get Tab by Id¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const tab = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').
channels.getById('19:65723d632b384ca89c81115c281428a3@thread.skype').tabs.getById('Id')();
Add a new Tab¶
import { graph } from "@pnp/graph";
import "@pnp/graph/teams"
const newTab = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').
channels.getById('19:65723d632b384ca89c81115c281428a3@thread.skype').tabs.add('Tab','https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a',<TabsConfiguration>{});