Merge pull request #70 from gvoynov/patch-1

Create Remove-User
This commit is contained in:
Stephen 2021-04-07 11:39:52 +01:00 committed by GitHub
commit 5fea2cf86d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,48 @@
<#
.SYNOPSIS
Removes User from Snipe-it asset system
.DESCRIPTION
Long description
.PARAMETER ID
Unique ID For User to be removed
.EXAMPLE
Remove-User -ID 44 -url $url -apiKey $secret -Verbose
#>
function Remove-User ()
{
[CmdletBinding(
SupportsShouldProcess = $true,
ConfirmImpact = "Low"
)]
Param(
[parameter(mandatory = $true)]
[string]$ID,
[parameter(mandatory = $true)]
[string]$URL,
[parameter(mandatory = $true)]
[string]$APIKey
)
$Values = @{
"ID" = $ID
}
$Body = $Values | ConvertTo-Json
$Parameters = @{
Uri = "$url/api/v1/users/$ID"
Method = 'Delete'
Body = $Body
Token = $apiKey
}
If ($PSCmdlet.ShouldProcess("ShouldProcess?"))
{
$result = Invoke-SnipeitMethod @Parameters
}
$result
}