POST
/
cases
curl --request POST \
  --url https://api.wirespeed.co/cases \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc",
  "statuses": [
    "NEW"
  ],
  "verdict": "MALICIOUS",
  "assetId": "<string>",
  "assetType": "USER",
  "exclusionId": "<string>",
  "onlyWasEscalated": true,
  "onlyWasContained": true,
  "hideDemoClients": true,
  "categoryClass": "ENDPOINT",
  "category": "OTHER__DIAGNOSTIC"
}'
{
  "data": [
    {
      "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>"
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

The response is of type object.