interface FindGroups {
    caseInsensitive?: boolean;
    exclude?: string | string[];
    excludeId?: string[];
    maxResults?: number;
    query?: string;
}

Properties

caseInsensitive?: boolean

Whether the search for groups should be case insensitive.

exclude?: string | string[]

As a group's name can change, use of excludeGroupIds is recommended to identify a group. A group to exclude from the result. To exclude multiple groups, provide an ampersand-separated list. For example, exclude=group1&exclude=group2. This parameter cannot be used with the excludeGroupIds parameter.

excludeId?: string[]

A group ID to exclude from the result. To exclude multiple groups, provide an ampersand-separated list. For example, excludeId=group1-id&excludeId=group2-id. This parameter cannot be used with the excludeGroups parameter.

maxResults?: number

The maximum number of groups to return. The maximum number of groups that can be returned is limited by the system property jira.ajax.autocomplete.limit.

query?: string

The string to find in group names.