Details about a filter.

interface Filter {
    description?: string;
    editPermissions?: Version3.Version3Models.SharePermission[];
    favourite?: boolean;
    favouritedCount?: number;
    id?: string;
    jql?: string;
    name: string;
    owner?: Version3.Version3Models.User;
    searchUrl?: string;
    self?: string;
    sharePermissions?: Version3.Version3Models.SharePermission[];
    sharedUsers?: Version3.Version3Models.UserList;
    subscriptions?: Version3.Version3Models.FilterSubscriptionsList;
    viewUrl?: string;
}

Hierarchy (view full)

Properties

description?: string

A description of the filter.

The groups and projects that can edit the filter.

favourite?: boolean

Whether the filter is selected as a favorite.

favouritedCount?: number

The count of how many users have selected this filter as a favorite, including the filter owner.

id?: string

The unique identifier for the filter.

jql?: string

The JQL query for the filter. For example, project = SSP AND issuetype = Bug.

name: string

The name of the filter. Must be unique.

searchUrl?: string

A URL to view the filter results in Jira, using the Search for issues using JQL operation with the filter's JQL string to return the filter results. For example, https://your-domain.atlassian.net/rest/api/3/search?jql=project+%3D+SSP+AND+issuetype+%3D+Bug.

self?: string

The URL of the filter.

The groups and projects that the filter is shared with.

viewUrl?: string

A URL to view the filter results in Jira, using the ID of the filter. For example, https://your-domain.atlassian.net/issues/?filter=10100.