Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
List of issue IDs for which latest conclusion should be returned.
Response
200 - application/json
Success
curl --request GET \
--url https://developer.synq.io/api/triage/v1/conclusions \
--header 'Authorization: Bearer <token>'
{
"conclusions": [
{
"conclusion": {
"conclusionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"summary": "<string>",
"concludedAt": "2023-01-15T01:30:15.01Z",
"isFinalConclusion": true,
"addToIncident": {
"incidentId": "<string>"
}
},
"originalIssueIds": [
"<string>"
],
"evidence": [
{
"evidenceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"analysis": {
"analysis": "<string>",
"sqlQueries": [
"<string>"
]
}
}
],
"userFeedback": {
"user": "<string>",
"feedbackAt": "2023-01-15T01:30:15.01Z",
"accept": {}
}
}
]
}
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": {
"conclusionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"summary": "<string>",
"concludedAt": "2023-01-15T01:30:15.01Z",
"isFinalConclusion": true,
"addToIncident": {
"incidentId": "<string>"
}
},
"originalIssueIds": [
"<string>"
],
"evidence": [
{
"evidenceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"title": "<string>",
"analysis": {
"analysis": "<string>",
"sqlQueries": [
"<string>"
]
}
}
],
"userFeedback": {
"user": "<string>",
"feedbackAt": "2023-01-15T01:30:15.01Z",
"accept": {}
}
}
]
}
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
Show child attributes