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": "1s"
}
]
}
Retrieves the triage state for one or more issues. This method is used by the LLM agent to retrieve the current state of the issues it is working on.
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": "1s"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
1
Show child attributes
Success
The response is of type object
.