public/api-v2/project/Invoke-JiraGetProjectRoleDetails.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-project-projectIdOrKey-roledetails-get function Invoke-JiraGetProjectRoleDetails { [CmdletBinding()] param ( # THe project id or key to retrieve roles for [Parameter(Mandatory,Position=0)] [string] $ProjectIdOrKey, # Set this flag to include only the roles to which the current user belongs [Parameter(Position=1)] [switch] $MyRoles, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/project/$ProjectIdOrKey/roledetails" $verb = "GET" $query = New-PACRestMethodQueryParams if($PSBoundParameters.ContainsKey("MyRoles")){$query.Add("currentMember",$true)} $method = New-PACRestMethod $functionPath $verb $query $method.Invoke($JiraContext) } } |