public/api-v2/system/Invoke-JiraGetApplicationRole.ps1

#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-applicationrole-key-get
function Invoke-JiraGetApplicationRole {
    [CmdletBinding()]
    param (
        # The Key of the role to retrieve
        [Parameter(Mandatory,Position=0)]
        [string]
        $RoleKey,

        # The JiraContext object to use for the request
        [Parameter()]
        [object]
        $JiraContext
    )
    process {
        $functionPath = "/rest/api/2/applicationrole/$RoleKey"
        $verb = "GET"

        $method = New-PACRestMethod $functionPath $verb
        $method.Invoke($JiraContext)
    }
}