GET
/
cases
/
{id}
/
related
curl --request GET \
  --url https://api.wirespeed.co/cases/{id}/related \
  --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>",
    "endpointCount": 123,
    "userCount": 123,
    "locationCount": 123,
    "fileCount": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Case identifier

Response

200 - application/json

The response is of type object[].