forked from gildas/posh-ic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Remove-ICSkill.ps1
39 lines (34 loc) · 972 Bytes
/
Remove-ICSkill.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<#
# AUTHOR : Pierrick Lozach
#>
function Remove-ICSkill() # {{{2
{
# Documentation {{{3
<#
.SYNOPSIS
Removes a skill
.DESCRIPTION
Removes a skill
.PARAMETER ICSession
The Interaction Center Session
.PARAMETER ICSkill
The Interaction Center Skill
#> # }}}3
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)] [Alias("Session", "Id")] [ININ.ICSession] $ICSession,
[Parameter(Mandatory=$true)] [Alias("Skill")] [string] $ICSkill
)
# Skill exists?
$skillExists = Get-ICSkill $ICSession -ICSkill $ICSkill
if ([string]::IsNullOrEmpty($skillExists)) {
# Skill does not exist
return
}
$headers = @{
"Accept-Language" = $ICSession.language;
"ININ-ICWS-CSRF-Token" = $ICSession.token;
}
$response = Invoke-RestMethod -Uri "$($ICsession.baseURL)/$($ICSession.id)/configuration/skills/$ICSkill" -Method Delete -Headers $headers -WebSession $ICSession.webSession -ErrorAction Stop
[PSCustomObject] $response
} # }}}2