Private/accountview.ps1
<#
.SYNOPSIS Get account's details .DESCRIPTION Get account's details .NOTES Private function .EXAMPLE #> function accountview { [CmdletBinding(DefaultParameterSetName="ImplicitAuth")] param ( # User's API token [Parameter(Mandatory, ParameterSetName="ExplicitAuth")] [string] $authToken, # API token's pass [Parameter(Mandatory, ParameterSetName="ExplicitAuth")] [string] $tokenPass, # Account's Id [Parameter(Mandatory)] [int] $id ) begin { } process { $commonParameters = "Debug,WarningAction,ErrorVariable,InformationVariable,OutBuffer,Verbose,ErrorAction,InformationAction,WarningVariable,OutVariable,PipelineVariable" -split "," foreach ($commonParameter in $commonParameters) { if ($PSBoundParameters.ContainsKey($commonParameter)) { $PSBoundParameters.Remove($commonParameter) } } if ($PSCmdlet.ParameterSetName -eq "ImplicitAuth") { $PSBoundParameters["authToken"] = $global:__SysPassGlobal.Token.UserName } $payload = New-JsonRpcPayload -method "account/view" -params $PSBoundParameters Write-Debug "Payload:`n$payload" $response = Invoke-RestMethod -URI "$($global:__SysPassGlobal.uri)/api.php" -Body $payload -Method POST -ContentType "application/json" Write-Debug "Response:`n$($response | ConvertTo-Json)" if ($response.result.resultCode -eq 0) { $response.result.result } else { $response.error } } end { } } |