curl --request GET \
--url https://developer.synq.io/api/triage/v1/conclusions \
--header 'Authorization: Bearer <token>'
{
"conclusions": [
{
"conclusion": {
"addToIncident": {
"incidentId": "<string>"
},
"conclusionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"summary": "<string>",
"concludedAt": "1s",
"isFinalConclusion": true
},
"originalIssueIds": [
"<string>"
],
"evidence": [
{
"analysis": {
"analysis": "<string>",
"sqlQueries": [
"<string>"
]
},
"evidenceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>"
}
],
"userFeedback": {
"accept": {},
"user": "<string>",
"feedbackAt": "1s"
}
}
]
}
Retrieves the latest 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/conclusions \
--header 'Authorization: Bearer <token>'
{
"conclusions": [
{
"conclusion": {
"addToIncident": {
"incidentId": "<string>"
},
"conclusionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"summary": "<string>",
"concludedAt": "1s",
"isFinalConclusion": true
},
"originalIssueIds": [
"<string>"
],
"evidence": [
{
"analysis": {
"analysis": "<string>",
"sqlQueries": [
"<string>"
]
},
"evidenceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>"
}
],
"userFeedback": {
"accept": {},
"user": "<string>",
"feedbackAt": "1s"
}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
List of issue IDs for which latest conclusion should be returned.
Success
The response is of type object
.