Public/Telegram/Get-TelegramMe.ps1



function Get-TelegramMe {

    [CmdletBinding()]
    param (

        [Parameter(Mandatory=$true)]
        [String]$Name                                # The telegram channel to use

    )

    process {

        $me = Invoke-Telegram -Name $Name -Path "getMe" -Method "Get"
        $me

    }

}