curl --request PATCH \
--url https://api.wirespeed.com/cases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "NEW",
"notes": "<string>",
"verdict": "MALICIOUS",
"respondedAt": "<string>"
}'
{
"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>"
}
curl --request PATCH \
--url https://api.wirespeed.com/cases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "NEW",
"notes": "<string>",
"verdict": "MALICIOUS",
"respondedAt": "<string>"
}'
{
"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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Case identifier
The response is of type object
.