public/api-v2/search/Invoke-JiraGetFieldAutocompleteSuggestions.ps1

#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-jql-autocompletedata-suggestions-get
function Invoke-JiraGetFieldAutocompleteSuggestions {
    [CmdletBinding(DefaultParameterSetName="FieldValue")]
    param (
        # The name of the field to get suggestions for
        [Parameter(Mandatory,Position=0)]
        [string]
        $FieldName,

        # The partial field value to use to filter suggestions
        [Parameter(Position=1,ParameterSetName="FieldValue")]
        [string]
        $FieldValue,

        # The predicate name to get value suggestions for
        [Parameter(Mandatory,Position=1,ParameterSetName="PredicateValue")]
        [string]
        $PredicateName,

        # The partial predicate value to use to filter suggestions
        [Parameter(Position=2,ParameterSetName="PredicateValue")]
        [string]
        $PredicateValue,

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

        $query = New-PACRestMethodQueryParams @{
            fieldName = $FieldName
        }
        if($PSBoundParameters.ContainsKey("FieldValue")){$query.Add("fieldValue",$FieldValue)}
        if($PSBoundParameters.ContainsKey("PredicateName")){$query.Add("predicateName",$PredicateName)}
        if($PSBoundParameters.ContainsKey("PredicateValue")){$query.Add("predicateValue",$PredicateValue)}

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