Actions129
- Calendar Permission Actions
- CIPP Administration Actions
- Execute API Client (GET)
- Execute Auto Backup
- Execute Extension Mapping (GET)
- Execute Extension Mapping (POST)
- Execute Extension Sync
- Execute Extensions Config
- Execute Password Config (POST)
- Execute Restore Backup
- Execute Run Backup
- List Custom Roles
- List Extension Sync
- List Logs
- List Scheduled Items
- Remove Scheduled Item
- Execute API Client (POST)
- Execute Extension Test
- Execute Password Config (GET)
- List Backups
- List Function Parameters
- Group Actions
- Intune Actions
- Add MSP App
- Add Office App
- Add Policy
- Add Store App
- Assign App
- Assign Autopilot Device
- Device Action
- Get Recovery Key
- List Applications
- List Application Queue
- List Autopilot Config
- List Devices
- List Intune Scripts
- List Intune Templates
- Remove Autopilot Device
- Remove Policy
- Remove Queued App
- Add Choco App
- Add WinGet App
- Assign Policy
- Get Local Admin Password
- List Autopilot Devices
- List Intune Policies
- Remove App
- Remove Intune Script
- Sync Autopilot Devices
- License Actions
- Security & Compliance Actions
- Teams & SharePoint Actions
- Tenant Actions
- Add Alert
- Clear Tenant Cache
- Execute CA Exclusion
- Execute Named Location
- Get Tenant
- List Alerts Queue
- List Azure AD Connect Status
- List Conditional Access Policies
- List Named Locations
- List Shared Mailbox Statistics
- List Standards
- List Tenants
- Remove Standard Template
- Add Named Location
- Edit Tenant
- Execute Standards Run
- List Audit Logs
- List CSP Licenses
- List Roles
- List Standard Templates
- Tool Actions
- User Actions
- Add User
- Exec Restore Deleted User
- List User
- List User Conditional Access Policies
- List User Groups
- Clear Immutable ID
- Create Temporary Access Password
- Delete User Device
- Dismiss Risky User
- List Deleted Items
- List Inactive Accounts
- List Sign-Ins
- Remove User
- Reset MFA
- Restore Deleted Item
- Revoke Sessions
- Set Email Forward
- Set Per-User MFA
- List All Users
- List User Counts
- List User Devices
- Convert Mailbox
- Disable User
- Enable Archive
- List MFA Users
- Offboard User
- Reset Password
- Send MFA Push
- Set Out of Office
Overview
This node operation allows users to add a new Team within Microsoft Teams via the CIPP API. It is useful for automating the creation of Teams with specific configurations such as display name, description, owner, and visibility settings. For example, an organization can automate team creation for new projects or departments, ensuring consistent team setup and ownership assignment.
Use Case Examples
- Create a new private Team named 'Project Alpha' with a specified owner and description.
- Add a public Team for a department with a given tenant filter to manage access and collaboration.
Properties
| Name | Meaning |
|---|---|
| Tenant Filter | The tenant ID or domain name to specify the tenant context for the Team creation. |
| Display Name | The display name of the Team to be created. |
| Description | Optional description of the Team. |
| Owner | User principal name of the Team owner, required to assign ownership. |
| Visibility | Visibility setting of the Team, either Public or Private. |
| Request Options | Advanced request settings including batching, SSL certificate validation, proxy configuration, and request timeout. |
Output
JSON
id- The unique identifier of the newly created Team.displayName- The display name of the created Team.description- The description of the created Team.owner- The user principal name of the Team owner.visibility- The visibility status of the Team (public or private).createdDateTime- Timestamp when the Team was created.
Dependencies
- Requires an API key credential for authentication with the CIPP API, specifically configured for Microsoft Teams & SharePoint operations.
Troubleshooting
- Ensure the tenantFilter is correctly specified as the tenant ID or domain name; incorrect values may cause authorization errors.
- Verify the owner user principal name is valid and has permissions to own a Team; invalid owners will cause the operation to fail.
- Check network settings if using a proxy or if SSL issues occur; misconfiguration can lead to request failures.
- Timeout errors may occur if the server is slow to respond; adjust the timeout setting accordingly.
Links
- Microsoft Teams - Create a Team - Official Microsoft documentation on creating Teams, useful for understanding the parameters and behavior of team creation.
- Microsoft Graph API - Create Team - API reference for creating a Team via Microsoft Graph, relevant to the underlying API calls made by this node.