APIIssues
Search issues
Search issues in a project by name, status, and severity.
Query Parameters
projectId?string
Project to list issues for. Auto-filled from CLI and SDK context when omitted.
Format
uuidlimit?integer
Maximum number of issues to return per page.
Range
1 <= value <= 100Default
50cursor?string
Cursor from a previous response's nextCursor to fetch the next page.
Format
uuidstatus?string
Filter by issue status.
Value in
- "open"
- "resolved"
- "ignored"
severity?string
Filter by severity.
Value in
- "low"
- "medium"
- "high"
- "critical"
componentId?string
Filter by component ID.
Format
uuidname?string
Case-insensitive partial match on issue name.
includeDeliveryMetadata?|
When true, include raw delivery metadata in each issue.
Default
falseResponse Body
application/json
curl -X GET "https://example.com/issues/search"{ "issues": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8", "name": "string", "description": "string", "status": "open", "severity": "low", "componentId": "616ccd92-d666-4180-8349-8d125b269fac", "createdAt": "2019-08-24T14:15:22Z", "resolvedAt": "2019-08-24T14:15:22Z", "mutedAt": "2019-08-24T14:15:22Z", "muteHitCount": 0, "lastActivityAt": "2019-08-24T14:15:22Z", "lastDeliveredAt": "2019-08-24T14:15:22Z", "locked": true, "redacted": true, "delivery": { "property1": null, "property2": null } } ], "nextCursor": "53a4a333-2825-45a4-80d2-5f430d088f36"}