Probe Run
Export Probe Run Test Cases. Supported formats CSV and JSON.
Probe Run Id.
Request payload to export Test Cases for a Probe Run.
Format of the export. Supported formats: 'json', 'csv'.
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
POST /api/workspaces/{workspaceId}/probe-run/{id}/test-cases/export HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Content-Type: application/*+json
Accept: */*
Content-Length: 137
{
"filters": {
"redTeam": [],
"result": [
"FAILED"
],
"search": "CTLO",
"strategy": [
"One Shot w/ Retry"
],
"variation": [
"LeetSpeak"
]
},
"format": "json"
}
binary
Returns comprehensive execution details for a specific probe run, including test case results, AI-powered vulnerability analysis, remediation strategies, and execution metrics. This endpoint provides deep insights into security probe performance and discovered vulnerabilities.
Workspace Id.
Probe Run Id.
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
GET /api/workspaces/{workspaceId}/probe-run/{probeRunId} HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"acceptedCount": 1,
"aiAnalysis": {
"id": 1,
"methods": [
{
"data": {
"criticalTestCaseIds": [
1
],
"failRate": 1,
"failedTestCaseCount": 1,
"totalTestCaseCount": 1
},
"description": "text",
"id": 1,
"name": "text"
}
],
"overview": "text"
},
"errorCount": 1,
"executionEnd": "2025-10-18T02:21:51.886Z",
"executionStart": "2025-10-18T02:21:51.886Z",
"failedCount": 1,
"isAiAnalysisFinished": true,
"passedCount": 1,
"probeId": 1,
"probeName": "text",
"probeRunId": 1,
"processedCount": 1,
"progress": 1,
"remediation": {
"dynamicTasks": [
{
"appliedBy": "text",
"appliedDate": "2025-10-18T02:21:51.886Z",
"completed": true,
"details": "text",
"id": 1,
"name": "text",
"type": "text"
}
],
"tasks": [
{
"appliedBy": "text",
"appliedDate": "2025-10-18T02:21:51.886Z",
"completed": true,
"details": "text",
"id": 1,
"name": "text",
"type": "text"
}
]
},
"scanRunId": 1,
"status": "text",
"testCaseResults": [
{
"attackId": "text",
"attempt": 1,
"detectionTime": "2025-10-18T02:21:51.886Z",
"editedStatusBy": "text",
"editedStatusDate": "2025-10-18T02:21:51.886Z",
"id": 1,
"isIncludedInReport": true,
"isRiskAccepted": true,
"redTeamer": "text",
"redTeamerLabels": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"riskAcceptedBy": "text",
"riskAcceptedDate": "2025-10-18T02:21:51.886Z",
"status": "text",
"strategy": "text",
"variation": "text"
}
],
"totalCount": 1
}
This endpoint triggers the AI analysis process for a specific scan probe run execution.
Workspace Id.
Probe Run Id.
OK
No content
Bad Request
Unauthorized
Forbidden
Internal Server Error
POST /api/workspaces/{workspaceId}/probe-run/{probeRunId}/ai-analysis/trigger HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
No content
This endpoint retrieves the AI analysis results for a specific scan probe run execution.
Workspace Id.
Probe Run Id.
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
GET /api/workspaces/{workspaceId}/probe-run/{probeRunId}/ai-analysis HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"attackClusters": [
{
"data": {
"criticalTestCaseIds": [
1
],
"failRate": 1,
"failedTestCaseCount": 1,
"totalTestCaseCount": 1
},
"description": "text",
"id": 1,
"name": "text"
}
],
"id": 1,
"overview": "text"
}
Last updated