Saved Queries
This resource lets you access and work with saved searches in YouTrack.
Resource | /api/savedQueries |
Returned entity | SavedQuery. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
SavedQuery attributes
Represents a saved search.
Related Resources
Below you can find the list of resources that let you work with this entity.
Extends WatchFolder
Attributes
This table describes attributes of the SavedQuery
entity.
To receive an attribute in the response from the server, specify it explicitly in the
fields
request parameter.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
id | String | The ID of the saved search. |
query | String | The query that is saved in this search. |
issues | Array of Issues | The collection of issues that match this saved search. |
visibleFor | UserGroup | Deprecated. Use the Group of users that can see this saved search. If the saved search is visible only to its owner, this property is null. Can be null . |
updateableBy | UserGroup | Deprecated. Use the Group of users that can update this saved search. If only the owner of the saved search can update it, this property is null. Can be null . |
readSharingSettings | WatchFolderSharingSettings | Users and groups that can see this saved search. If the saved search is visible only to its owner, this property contains an empty array. |
updateSharingSettings | WatchFolderSharingSettings | Users and groups that can update this saved search. If only the owner of the saved search can update it, this property contains an empty array. |
owner | User | The user who created the watch folder. |
name | String | The name of the issue folder. |
Read a List of SavedQueries
Get all saved searches that are visible to the current user.
Request syntax
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of SavedQuery attributes that should be returned in the response. If no field is specified, only the |
$skip | Int | Optional. Lets you set a number of returned entities to skip before returning the first one. |
$top | Int | Optional. Lets you specify the maximum number of entries that are returned in the response. If you don't set the $top value, the server limits the maximum number of returned entries. The server returns a maximum of 42 entries for most resources that return collections. For more information, see Pagination. |
Sample
Sample request
Sample response body
Add a New SavedQuery
Create a new saved search.
Required fields: name
, query
.
Required permissions
Requires permissions: Create Watch Folder
Request syntax
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of SavedQuery attributes that should be returned in the response. If no field is specified, only the |