public/api-v2/project/Invoke-JiraDeleteActorFromProjectRole.ps1

#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-project-projectIdOrKey-role-id-delete
function Invoke-JiraDeleteActorFromProjectRole {
    [CmdletBinding(DefaultParameterSetName="User")]
    param (
        # THe project id or key to retrieve roles for
        [Parameter(Mandatory,Position=0)]
        [string]
        $ProjectIdOrKey,

        # The id of the role to retrieve
        [Parameter(Mandatory,Position=1)]
        [int64]
        $RoleId,

        # Account ID for user to remove from the role
        [Parameter(Mandatory,ParameterSetName="User",Position=2)]
        [string]
        $User,

        # Group name for group to remove to the role
        [Parameter(Mandatory,ParameterSetName="Group",Position=2)]
        [string]
        $Group,

        # The JiraContext object to use for the request
        [Parameter()]
        [object]
        $JiraContext
    )
    process {
        $functionPath = "/rest/api/2/project/$ProjectIdOrKey/role/$RoleId"
        $verb = "DELETE"

        $query = New-PACRestMethodQueryParams
        if($PSBoundParameters.ContainsKey("User")){$query.Add("user",$User)}
        if($PSBoundParameters.ContainsKey("Group")){$query.Add("group",$Group)}

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