Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Minimum length:
1
Response
200 - application/json
Success
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-01-15T01:30:15.01Z"
}
]
}
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": "2023-01-15T01:30:15.01Z"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
1
Show child attributes
Success
Show child attributes