Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
JitBitPS
0.0.13
Public/Ticket/Get-JBTicket.ps1
function
Get-JBTicket
{
[
CmdletBinding
(
)
]
param
(
[
Parameter
(
Mandatory
=
$true
)
]
[int]
$id
)
$body
=
@{
id
=
$id
}
$Params
=
@{
Api
=
"ticket"
Body
=
$body
}
Invoke-JBMethod
@params
}