Create a Team SDK

Use the createTeam method:

const userTeam = await sdk.teams.createTeam({ organizationId: 11258,
teamName: "John Smith's team"
});
const teamId = userTeam.id; console.log(teamId);

Last updated