Getting a List of Tracker Items Based on CbQL Query
GET /v3/items/query or POST /v3/items/query will accept a f to determine a filtering criteria for the retrieved tracker items.
For example if we are looking for all the tracker items with High priority we can use the following query: priority='High'.
Request body:
{
"page": 1,
"pageSize": 25,
"queryString": "priority='High'"
}
Response:
{
"page": 1,
"pageSize": 25,
"total": 1,
"items": [
{
"id": 1046,
"name": "Implement car software",
"descriptionFormat": "Wiki",
...
"priority": {
"id": 2,
"name": "High",
"type": "ChoiceOptionReference"
},
...
}
]
}