Admin/Technician/Remove-SDPTechnician.ps1
Function Remove-SDPTechnician { <# .SYNOPSIS Delete Technician by id .PARAMETER TechnicianId Technician id .EXAMPLE $Status = Remove-SDPTechnician -TechnicianId 54321 .NOTES Author: Michal Gajda .LINK https://ui.servicedeskplus.com/APIDocs3/index.html#technician #> [CmdletBinding( SupportsShouldProcess=$True, ConfirmImpact="Low" )] param ( [String]$UriSDP, [String]$ApiKey, [Parameter(Mandatory=$true, ValueFromPipeline)] [Int]$TechnicianId ) 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/technicians/$TechnicianId" } #Send request If ($PSCmdlet.ShouldProcess($TechnicianId,"Delete technician by id")) { $Result = Invoke-SDPAPIEntity @InvokeParams $Results = $Result.response_status } #Return result if($MyInvocation.BoundParameters.ContainsKey("Debug")) { Return $Result } else { Return $Results } } End{} } |