Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
psbanky
2.2.0
functions/public/Get-Account.ps1
function
Get-Account
{
[
CmdletBinding
(
)
]
param
(
)
process
{
$url
=
"/api/v1/accounts"
$response
=
Invoke-Api
$url
-Method
'GET'
return
$response
}
}