Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSAtera
1.8.0
endpoints/Account.ps1
<#
.Synopsis
Get account information from the Atera API.
#>
function
Get-AteraAccount
{
[
CmdletBinding
(
)
]
param
(
)
New-AteraGetRequest
-Endpoint
"/account"
-Paginate
$false
}