Skip to main content
GET
/
api
/
triage
/
v1
/
statuses
ListTriageState
curl --request GET \
  --url https://developer.synq.io/api/triage/v1/statuses \
  --header 'Authorization: Bearer <token>'
{
  "states": [
    {
      "issueId": "<string>",
      "status": "ISSUE_TRIAGE_STATUS_UNSPECIFIED",
      "lastUpdatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

statuses
enum<string>[]
Minimum array length: 1

IssueTriageStatus represents the current stage of an issue in the SRE agent's investigation workflow. The status progresses as the agent collects evidence and reaches conclusions about the issue.

Available options:
ISSUE_TRIAGE_STATUS_UNSPECIFIED,
ISSUE_TRIAGE_STATUS_SCHEDULED,
ISSUE_TRIAGE_STATUS_IN_PROGRESS,
ISSUE_TRIAGE_STATUS_CANCELLED,
ISSUE_TRIAGE_STATUS_FAILED,
ISSUE_TRIAGE_STATUS_TRIAGED,
ISSUE_TRIAGE_STATUS_ACCEPTED,
ISSUE_TRIAGE_STATUS_IGNORED,
ISSUE_TRIAGE_STATUS_CLOSED

Response

200 - application/json

Success

states
IssueTriageState · object[]