Authentication
All issue endpoints require an active session. Requests without a valid session cookie return401 Unauthorized.
List Issues
Return a paginated list of issues for a project, with optional filtering by status or severity level.Path Parameters
The ID of the project whose issues you want to list.
Query Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
page | integer | Page number to retrieve. Minimum 1. | 1 |
limit | integer | Number of issues per page. Range: 1–50. | 10 |
status | string | Filter by issue status: UNRESOLVED, RESOLVED, or IGNORED. | All statuses |
level | string | Filter by severity: FATAL, ERROR, WARNING, INFO, DEBUG. | All levels |
status or level are silently ignored and the filter is not applied.
Example Request
Example Response
Response Fields
Array of issue objects, ordered by
lastSeen descending (most recently active first).Unique identifier for the issue.
The hash used to group events into this issue.
Human-readable title derived from the exception type and message.
The source location (file and function) closest to the throw site. May be
null.Current triage status:
UNRESOLVED, RESOLVED, or IGNORED.Severity level:
FATAL, ERROR, WARNING, INFO, or DEBUG.Total number of events grouped into this issue.
ISO 8601 timestamp of when this issue was first detected.
ISO 8601 timestamp of the most recent event for this issue.
Pagination metadata:
page, limit, total (total matching issues), and pages (total page count).Get an Issue
Retrieve full detail for a single issue, including its 10 most recent events.Path Parameters
The ID of the project the issue belongs to.
The issue’s unique ID.
Example Request
Example Response
Update Issue Status
Change the triage status of an issue toUNRESOLVED, RESOLVED, or IGNORED.
Path Parameters
The ID of the project the issue belongs to.
The issue’s unique ID.
Request Body
The new status for the issue. Must be one of:
UNRESOLVED, RESOLVED, IGNORED.Example Request
Example Response
Response Codes
| Status | Meaning |
|---|---|
200 | Request succeeded. |
400 | Invalid status value in the request body. |
401 | Not authenticated — no valid session. |
404 | Issue not found in the specified project. |