GET
/
api
/
triage
/
v1
/
conclusions
BatchLatestConclusions
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"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

issueIds
string[]

List of issue IDs for which latest conclusion should be returned.

Response

200
application/json

Success

The response is of type object.