list_problem_occurrences
Retrieve and filter problem occurrences from TeamCity builds with pagination support for efficient issue tracking and analysis.
Instructions
List problem occurrences (supports pagination)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Fetch all pages up to maxPages | |
| buildId | No | Filter by build ID via locator helper | |
| fields | No | Optional fields selector for server-side projection | |
| locator | No | Optional problem occurrence locator to filter results | |
| maxPages | No | Max pages to fetch (when all=true) | |
| pageSize | No | Items per page (default 100) | |
| problemId | No | Filter by problem ID via locator helper |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"description": "Fetch all pages up to maxPages",
"type": "boolean"
},
"buildId": {
"description": "Filter by build ID via locator helper",
"type": "string"
},
"fields": {
"description": "Optional fields selector for server-side projection",
"type": "string"
},
"locator": {
"description": "Optional problem occurrence locator to filter results",
"type": "string"
},
"maxPages": {
"description": "Max pages to fetch (when all=true)",
"type": "number"
},
"pageSize": {
"description": "Items per page (default 100)",
"type": "number"
},
"problemId": {
"description": "Filter by problem ID via locator helper",
"type": "string"
}
},
"type": "object"
}