curl --request POST \
--url https://api.wirespeed.com/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
}
curl --request POST \
--url https://api.wirespeed.com/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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.