ListProblemsRequest
| Field | Type |
|---|---|
status | ProblemStatus |
page | int32 |
page_size | int32 |
assignee_ids | repeated string |
severity_levels | repeated int32 |
portfolio_ids | repeated string |
title_query | string |
Required scope: problem:read
Results are limited to the connected workspace and the API key creator’s
current resource access. page defaults to 1, pageSize defaults to 25, and
pageSize is capped at 100.
POST /public-api/publicapi.v1.Problem/ListProblems Lists problems visible to the API key actor, with bounded pagination. page defaults to 1 and page_size defaults to 25.
| Field | Type |
|---|---|
status | ProblemStatus |
page | int32 |
page_size | int32 |
assignee_ids | repeated string |
severity_levels | repeated int32 |
portfolio_ids | repeated string |
title_query | string |
| Field | Type |
|---|---|
problems | repeated Problem |
total | int32 |
page | int32 |
page_size | int32 |
{ "status": "PUBLIC_PROBLEM_STATUS_OPEN", "page": 1, "pageSize": 25, "severityLevels": [2, 3], "portfolioIds": ["<portfolio-id>"], "titleQuery": "inspection"}Omit filters to list all visible problems within the page bounds.