Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
JitBitPS
0.0.11
Public/Users/Get-JBUser.ps1
function
Get-JBUser
{
[
CmdletBinding
(
)
]
param
(
[
Parameter
(
Mandatory
=
$true
)
]
[int]
$userId
)
$Params
=
@{
Api
=
"User"
Body
=
$PSBoundParameters
}
Invoke-JBMethod
@Params
}