Functions/User/Get-PASUserLoginInfo.ps1

function Get-PASUserLoginInfo {
    <#
.SYNOPSIS
Get Login information for the current user

.DESCRIPTION
Returns data about the User that is currently logged into the system

.EXAMPLE
Get-PASUserLoginInfo

Returns Login Info for the current user

.INPUTS
WebSession & BaseURI can be piped to the function by propertyname

.OUTPUTS
Last successful & failed logon times for the current user

.LINK
https://pspas.pspete.dev/commands/Get-PASUserLoginInfo
#>

    [CmdletBinding()]
    param(    )

    BEGIN {
        Assert-VersionRequirement -RequiredVersion 10.4
    }#begin

    PROCESS {

        #Create URL for request
        $URI = "$Script:BaseURI/api/LoginsInfo"

        #send request to web service
        $result = Invoke-PASRestMethod -Uri $URI -Method GET -WebSession $Script:WebSession

        If ($null -ne $result) {

            #Return Results
            $result | Add-ObjectDetail -typename psPAS.CyberArk.Vault.User.Login

        }

    }#process

    END { }#end

}