GET
/
cases
/
example
curl --request GET \
  --url https://api.wirespeed.co/cases/example \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "sid": "<string>",
  "teamId": "<string>",
  "name": "<string>",
  "status": "NEW",
  "createdAt": "<string>",
  "detectionSids": [
    "<string>"
  ],
  "testMode": true,
  "firstDetectionSourceIngestedAt": "<string>",
  "firstDetectionSourceDetectedAt": "<string>",
  "updatedAt": "<string>",
  "closedAt": "<string>",
  "logs": [
    {
      "log": "<string>",
      "timestamp": "<string>",
      "debug": true
    }
  ],
  "contained": true,
  "reingested": true,
  "verdict": "MALICIOUS",
  "title": "<string>",
  "categories": [
    "OTHER__DIAGNOSTIC"
  ],
  "excludeFromMeans": true,
  "verdictedAt": "<string>",
  "detectionCount": 123,
  "firstRun": true,
  "mttr": 123,
  "teamName": "<string>",
  "containsVIP": true,
  "containsHVA": true,
  "externalTicketId": "<string>",
  "externalTicketIntegrationId": "<string>",
  "autoContained": true,
  "severity": "<string>",
  "severityOrdinal": 123,
  "respondedAt": "<string>",
  "platforms": [
    "<string>"
  ],
  "notes": "<string>",
  "clientNotified": true,
  "summary": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

The response is of type object.