Admin/Subcategory/Remove-SDPSubcategory.ps1
Function Remove-SDPSubcategory { <# .SYNOPSIS Delete Subcategory by id .PARAMETER SubcategoryId Item id .EXAMPLE $Status = Remove-SDPSubcategory -SubcategoryId 54321 .NOTES Author: Michal Gajda .LINK https://ui.servicedeskplus.com/APIDocs3/index.html#delete-an-user #> [CmdletBinding( SupportsShouldProcess=$True, ConfirmImpact="Low" )] param ( [String]$UriSDP, [String]$ApiKey, [Parameter(Mandatory=$true, ValueFromPipeline)] [Int]$SubcategoryId ) Begin { #Create headers if(!$MyInvocation.BoundParameters.ContainsKey("UriSDP")) { $UriSDP = $Global:UriSDP } if(!$MyInvocation.BoundParameters.ContainsKey("ApiKey")) { $ApiKey = $Global:ApiKey } } Process { $InvokeParams = @{ UriSDP = $UriSDP ApiKey = $ApiKey Method = "DELETE" EntityUri = "/api/v3/subcategories/$SubcategoryId" } #Send request If ($PSCmdlet.ShouldProcess($SubcategoryId,"Delete subcategory by id")) { $Result = Invoke-SDPAPIEntity @InvokeParams $Results = $Result.response_status } #Return result if($MyInvocation.BoundParameters.ContainsKey("Debug")) { Return $Result } else { Return $Results } } End{} } |