POST
/
api
/
triage
/
v1
/
{session_id}
/
evidence
RecordEvidence
curl --request POST \
  --url https://developer.synq.io/api/triage/v1/{session_id}/evidence \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "evidence": [
    {
      "analysis": {
        "analysis": "<string>",
        "sqlQueries": [
          "<string>"
        ]
      },
      "evidenceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "issueIds": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "title": "<string>"
    }
  ]
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

session_id
string
required

Unique identifier of the triaging session, used to group related operations.

Body

application/json

Request to record evidence collected during the triage investigation.

Response

200
application/json

Success

Response for the RecordEvidence operation. Empty as the operation is fire-and-forget.