Public/Groups/UserGroups/New-JCUserGroup.ps1
Function New-JCUserGroup () { [CmdletBinding()] param ( [Parameter(Mandatory, ValueFromPipelineByPropertyName = $True)] [string] $GroupName ) begin { Write-Debug 'Verifying JCAPI Key' if ($JCAPIKEY.length -ne 40) {Connect-JConline} Write-Debug 'Populating API headers' $hdrs = @{ 'Content-Type' = 'application/json' 'Accept' = 'application/json' 'X-API-KEY' = $JCAPIKEY } if ($JCOrgID) { $hdrs.Add('x-org-id', "$($JCOrgID)") } $URI = "$JCUrlBasePath/api/v2/usergroups" $NewGroupsArrary = @() } process { foreach ($Group in $GroupName) { $body = @{ 'name' = $Group } $jsonbody = ConvertTo-Json $body try { $NewGroup = Invoke-RestMethod -Method POST -Uri $URI -Body $jsonbody -Headers $hdrs -UserAgent $JCUserAgent $Status = 'Created' } catch { $Status = $_.ErrorDetails } $FormattedResults = [PSCustomObject]@{ 'Name' = $Group 'id' = $NewGroup.id 'Result' = $Status } $NewGroupsArrary += $FormattedResults } } end { return $NewGroupsArrary } } |