Skip to content

Powershell functions for working with the Five9 Admin Web Service API

License

Notifications You must be signed in to change notification settings

sqone2/PSFive9Admin

Repository files navigation

PS Gallery
 

PSFive9Admin

Powershell functions for working with the Five9 Admin Web Service API    

Getting Started

#### Prerequisites (Run these commands once only)

# Force TLS 1.2
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

# Install NuGet
Install-PackageProvider NuGet -Scope: CurrentUser -Force
Import-PackageProvider NuGet -Force
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted

# Set Execution Policy
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope: CurrentUser -Force

# Install PSFive9Admin module
Install-Module PSFive9Admin -Scope: CurrentUser -Force
Import-Module PSFive9Admin

Connect to a Five9 domain

Connect-Five9AdminWebService -Verbose

 

Examples

  Examples  

Get existing user:

 Get-Five9User -NamePattern "[email protected]"

  Create a new user:

New-Five9User -DefaultRole Agent -FirstName "Susan" -LastName "Davis" -UserName [email protected] -Email [email protected] -Password 'P@ssword!'

  Create a new skill:

New-Five9Skill -Name "MultiMedia"

 
Add new user to new skill:

Add-Five9SkillMember -Name "Multimedia" -Username "[email protected]"

About

Powershell functions for working with the Five9 Admin Web Service API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published