Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
JitBitPS
0.0.10
Public/Assets/Get-JBAsset.ps1
function
Get-JBAsset
{
[
CmdletBinding
(
)
]
param
(
[
Parameter
(
Mandatory
)
]
[int]
$Id
)
$Params
=
@{
Api
=
"Asset"
body
=
$PSBoundParameters
}
Invoke-JBMethod
@Params
}