curl --request GET \
--url https://platform.versori.com/api/v2/o/{organisation_id}/issues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organisationId": "<string>",
"projectId": "<string>",
"environmentId": "<string>",
"status": "open",
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"createdAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"seenCount": 123,
"resolutionStatus": "resolved",
"resolvedAt": "2023-11-07T05:31:56Z",
"severity": "high"
}
]ListIssues returns a list of all the Issues for the given organisation. The issues can be filtered by status, assignee, and other parameters. Before and After query parameters refer to the createdAt timestamp of the issue.
curl --request GET \
--url https://platform.versori.com/api/v2/o/{organisation_id}/issues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organisationId": "<string>",
"projectId": "<string>",
"environmentId": "<string>",
"status": "open",
"reason": "error",
"message": "<string>",
"title": "<string>",
"labels": {},
"annotations": {},
"createdAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z",
"seenCount": 123,
"resolutionStatus": "resolved",
"resolvedAt": "2023-11-07T05:31:56Z",
"severity": "high"
}
]Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.
Which date to use in after and before queries. If not provided, defaults to createdAt. The result will also be ordered by this date.
createdAt, lastSeenAt Filter issues by status. Can be one of 'open', 'closed', 'acked' or 'resolved'. If not provided, defaults to getting issues of all statuses.
Current status of the issue
open, closed, acked, resolved Filter issues by project ID. If not provided, issues from all projects are returned. This is useful for filtering issues related to a specific project.
Filter issues by environment ID. If not provided, issues from all projects are returned. This is useful for filtering issues related to a specific environment.
Filter issues by severity. Can be one of 'low', 'medium', or 'high'. If not provided, issues of all severities are returned.
Severity level of the issue
high, low, medium OK
Unique identifier for the issue (ULID)
ID of the organization the isszue belongs to
ID of the project the issue belongs to
ID of the environment the issue occurred in
Current status of the issue
open, closed, acked, resolved Reason for the issue creation
error, manual Detailed message of the issue
Title of the issue
Key-value pairs for searchable labels
Show child attributes
Key-value pairs for additional non-searchable information
Show child attributes
Timestamp when the issue was created
Timestamp when the issue was last seen
Number of times the issue has been seen
Status of the issue resolution
resolved, negated, ignored Timestamp when the issue was resolved
Severity level of the issue
high, low, medium