Adds a new SharePoint site to the specified customer tenant.
The Add-CIPPSharePointSite function creates a new SharePoint site with the specified parameters. It supports different site designs and templates.
The ID of the customer tenant where the SharePoint site will be added. This parameter is mandatory.
The display name of the SharePoint site. This parameter is mandatory.
The description of the SharePoint site. This parameter is mandatory.
The owner of the SharePoint site. Should be a valid user principal name (UPN). This parameter is mandatory.
The design of the SharePoint site. Valid values are 'Topic', 'Showcase', 'Blank', and 'Custom'. The default value is 'Showcase'. This parameter is optional.
The template of the SharePoint site. Valid values are 'Communication' and 'Team'. The default value is 'Communication'. This parameter is optional.
PS > Add-CIPPSharePointSite -CustomerTenantID "166cc908-10b2-405f-a00b-03006c430c9c" -DisplayName "Project Site" -Description "Site for project collaboration" -Owner "owner@domain.com"
PS > Add-CIPPSharePointSite -CustomerTenantID "domain.com" -DisplayName "Project Site" -Description "Site for project collaboration" -Owner "owner@domain.com"