Saved Queries
This resource lets you access and work with saved searches in YouTrack.
Resource |
|
---|---|
Returned entity | SavedQuery. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
Represents a saved search.
Below you can find the list of resources that let you work with this entity.
Saved Queries
Extends WatchFolder
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 | The collection of issues that match this saved search. | |
visibleFor | 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. | |
updateableBy | 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. | |
readSharingSettings | 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 | 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 | The user who created the watch folder. | |
name | String | The name of the issue folder. |
Get all saved searches that are visible to the current user.
GET /api/savedQueries?{fields}&{$top}&{$skip}
null | Database ID of SavedQuery |
---|
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. |
https://example.youtrack.cloud/api/savedQueries?fields=id,name,query,owner(login,name),visibleFor(name,id),issues(idReadable,summary)&$skip=8&$top=3
[
{
"issues": [
{
"summary": "Example for Get specific issue tag",
"idReadable": "RAP-2",
"$type": "Issue"
},
{
"summary": "REST API lets you create issues!",
"idReadable": "SP-46",
"$type": "Issue"
},
{
"summary": "Issue from REST #1",
"idReadable": "SP-16",
"$type": "Issue"
},
{
"summary": "Issue from REST #1",
"idReadable": "SP-7",
"$type": "Issue"
},
{
"summary": "New summary",
"idReadable": "SP-38",
"$type": "Issue"
}
],
"query": "for: me",
"visibleFor": {
"name": "All Users",
"id": "3-0",
"$type": "UserGroup"
},
"owner": {
"login": "search_user_1918800649",
"name": "system user",
"$type": "User"
},
"name": "Assigned to me",
"id": "51-15",
"$type": "SavedQuery"
},
{
"issues": [
{
"summary": "REST API lets you create issues!",
"idReadable": "SP-34",
"$type": "Issue"
},
{
"summary": "Issue from REST #1",
"idReadable": "SP-16",
"$type": "Issue"
},
{
"summary": "Issue from REST #1",
"idReadable": "SP-7",
"$type": "Issue"
},
{
"summary": "Another issue created using REST API",
"idReadable": "SP-32",
"$type": "Issue"
}
],
"query": "commenter: me",
"visibleFor": {
"name": "All Users",
"id": "3-0",
"$type": "UserGroup"
},
"owner": {
"login": "search_user_1918800649",
"name": "system user",
"$type": "User"
},
"name": "Commented by me",
"id": "51-16",
"$type": "SavedQuery"
},
{
"issues": [],
"query": "project: {Scrum project from REST} has: -{Board Scrum project from REST Project Development} #Unresolved -Epic",
"visibleFor": null,
"owner": {
"login": "john.doe",
"name": "John Doe",
"$type": "User"
},
"name": "Scrum project from REST Scrum-Board-Backlog",
"id": "51-17",
"$type": "SavedQuery"
}
]
Create a new saved search.
Required fields: name
, query
.
Requires permissions: Create Watch Folder
POST /api/savedQueries?{fields}
null | Database ID of SavedQuery |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of SavedQuery attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/savedQueries?fields=id,name,query,owner(login,name),visibleFor(name,id),issues(id,idReadable,summary)
{
"query": "Priority: Major, Critical, Show-stopper #Unresolved",
"name": "Requires Attention"
}
{
"query": "Priority: Major, Critical, Show-stopper #Unresolved",
"issues": [
{
"idReadable": "SP-47",
"summary": "REST API lets you create issues!",
"$type": "Issue"
},
{
"idReadable": "SP-46",
"summary": "REST API lets you create issues!",
"$type": "Issue"
},
{
"idReadable": "SP-45",
"summary": "REST API lets you create issues!",
"$type": "Issue"
},
{
"idReadable": "SP-44",
"summary": "REST API lets you create issues!",
"$type": "Issue"
},
{
"idReadable": "SP-39",
"summary": "Huston!",
"$type": "Issue"
},
{
"idReadable": "SP-38",
"summary": "New summary",
"$type": "Issue"
}
],
"visibleFor": null,
"owner": {
"login": "john.doe",
"name": "John Doe",
"$type": "User"
},
"name": "Requires Attention",
"id": "51-34",
"$type": "SavedQuery"
}