public/api-v2/user/Invoke-JiraGetCurrentUser.ps1
$JiraUserExpand = @("groups","applicationRoles") # https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-myself-get function Invoke-JiraGetCurrentUser { [CmdletBinding()] param ( # Used to expand additional attributes [Parameter(Position=0)] [ValidateScript({ Compare-StringArraySubset $JiraUserExpand $_ })] [string[]] $Expand, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/myself" $verb = "GET" $query = New-PACRestMethodQueryParams if($PSBoundParameters.ContainsKey("Expand")){$query.Add("expand",$Expand -join ",")} $method = New-PACRestMethod $functionPath $verb $query $method.Invoke($JiraContext) } } |