Authentication
This endpoint requires an active session. Requests without a valid session cookie return401 Unauthorized.
List Events for an Issue
Return a paginated list of events belonging to a specific issue, ordered by timestamp descending (most recent first).Path Parameters
The ID of the project the issue belongs to.
The ID of the issue whose events you want to retrieve.
Query Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
page | integer | Page number to retrieve. Minimum 1. | 1 |
limit | integer | Number of events per page. Range: 1–50. | 10 |
Example Request
Example Response
Response Fields
Array of event objects, ordered by
timestamp descending.Unique identifier for the event.
ID of the parent issue this event is grouped into.
ID of the project this event belongs to.
Severity level as stored:
FATAL, ERROR, WARNING, INFO, or DEBUG.The error message string from the ingested envelope’s
exception.value.The full stack trace payload. Contains a
frames array (innermost frame first), where each frame has filename, lineno, and optionally function and colno. May be null if no stack trace was provided at ingest time.Runtime environment context. May contain
browser (name, version) and/or os (name, version) sub-objects. null if not provided at ingest time.Flat
Record<string, string> of custom tags attached to this event. null if no tags were sent.The
user payload from the envelope, containing the optional fields id and email. null if no user was attached.HTTP request context, with optional
url, method, and headers fields. null if not provided at ingest time.ISO 8601 timestamp of when the error occurred (derived from the envelope’s
timestamp field, or the receipt time if omitted).ISO 8601 timestamp of when the Argus server received and stored the event.
Pagination metadata:
page, limit, total (total events for this issue), and pages (total page count).Response Codes
| Status | Meaning |
|---|---|
200 | Request succeeded. |
401 | Not authenticated — no valid session. |
404 | Issue not found in the specified project. |