https://almsearch.dev.azure.com/${organization}/${project}/_apis/search/workitemsearchresults?api-version=5.1-preview.1
HTTP REQUEST:
Content: {
"searchText": "${search}",
"$skip": 0,
"$top": 100,
"filters": {
"System.WorkItemType": [
"Issue"
],
"System.State": [
"Doing",
"To Do"
]
},
"$orderBy": [
{
"field": "system.id",
"sortOrder": "ASC"
}
],
"includeFacets": false
}
this searching the whole board, is there a way to add a filter just to search on title(system.title) itself, i have tried adding the filter system.title it doesnt work
Scenario: if i want to search "ABC" from REST API it is returning the result even if "ABC" exists in description of the story or discussion of the story....so is there a way to search and return the results just based on title and not anything else