GET /rest/api/2/filter/search
Returns a paginated list of filters. Use this operation to get:
- specific filters, by defining
id
only. - filters that match all of the specified attributes. For example, all filters for a user with a particular word in their name. When multiple attributes are specified only filters matching all attributes are returned.
This operation can be accessed anonymously.
Permissions required: None, however, only the following filters that match the query parameters are returned:
- filters owned by the user.
- filters shared with a group that the user is a member of.
- filters shared with a private project that the user has Browse projects project permission for.
- filters shared with a public project.
- filters shared with the public.
Servers
- https://your-domain.atlassian.net
Query parameters
Name | Type | Required | Description |
---|---|---|---|
projectId |
Integer | No |
Project ID used to returns filters that are shared with a project that matches |
startAt |
Integer | No |
The index of the first item to return in a page of results (page offset). Default value: 0 |
maxResults |
Integer | No |
The maximum number of items to return per page. Default value: 50 |
accountId |
String | No |
User account ID used to return filters with the matching |
expand |
String | No |
Use expand to include additional information about filter in the response. This parameter accepts a comma-separated list. Expand options include:
|
overrideSharePermissions |
Boolean | No |
EXPERIMENTAL: Whether share permissions are overridden to enable filters with any share permissions to be returned. Available to users with Administer Jira global permission. Default value: false |
id[] |
Array | No |
The list of filter IDs. To include multiple IDs, provide an ampersand-separated list. For example, |
groupId |
String | No |
Group ID used to returns filters that are shared with a group that matches |
filterName |
String | No |
String used to perform a case-insensitive partial match with |
orderBy |
String | No |
Order the results by a field:
Possible values:
Default value: "name" |
isSubstringMatch |
Boolean | No |
When Default value: false |
groupname |
String | No |
As a group's name can change, use of |
owner |
String | No |
This parameter is deprecated because of privacy changes. Use |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.