Probe Settings
This endpoint creates new probe settings for a specific target in a workspace. Probe settings define how probes are configured and used for testing vulnerabilities.
Workspace Id.
Target Id.
Request payload to create new Probe Settings for a Target.
Enables or disables the Probe.
The risk priority of the Probe, e.g., 'LOW', 'MEDIUM', 'HIGH' or 'CRITICAL'.
POST /api/workspaces/{workspaceId}/target/{targetId}/probe-settings HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Content-Type: application/*+json
Accept: */*
Content-Length: 504
{
"config": {
"inputs": {
"attack_multiplier": 10,
"conversation_depth": 5,
"custom_adversarial": true,
"custom_on_domain": true,
"entriesCount": 2,
"fileId": "4ad01246-954c-42dd-b3c5-11cd69a5350f",
"fileName": "custom_dataset.csv",
"intent": "Custom Dataset Intent",
"languages": [
"en",
"hr"
],
"probe_name": "Custom Dataset",
"strategy_list": [
"one_shot_w_retry",
"multishot",
"delayed_attack"
],
"variation_list": [
"leet",
"multilanguage",
"rag"
]
},
"probeId": null,
"probeType": "CUSTOM_DATASET"
},
"isEnabled": true,
"riskPriority": "CRITICAL"
}
{
"dateCreated": "2025-07-17T18:31:50.089Z",
"enabled": true,
"probeId": 1,
"probeSettingsId": 1,
"probeType": "text",
"userInputConfig": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint updates existing probe settings for a specific target in a workspace. Probe settings define how probes are configured and used for testing vulnerabilities.
Workspace Id.
Target Id.
Probe Settings Id.
Enables or disables the Probe.
The risk priority of the Probe, e.g., 'LOW', 'MEDIUM', 'HIGH' or 'CRITICAL'.
PATCH /api/workspaces/{workspaceId}/target/{targetId}/probe-settings/{probeSettingsId} HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Content-Type: application/*+json
Accept: */*
Content-Length: 488
{
"config": {
"inputs": {
"attack_multiplier": 12,
"conversation_depth": 6,
"custom_adversarial": false,
"custom_on_domain": false,
"entriesCount": 3,
"fileId": "4ad01246-954c-42dd-b3c5-11cd69a5350f",
"fileName": "updated_custom_dataset.csv",
"intent": "Updated Custom Dataset Intent",
"languages": [
"en",
"hr",
"de"
],
"probe_name": "Updated Custom Dataset",
"strategy_list": [
"one_shot_w_retry",
"multishot"
],
"variation_list": [
"leet",
"multilanguage",
"rag",
"binary_tree"
]
}
},
"isEnabled": true,
"riskPriority": "CRITICAL"
}
{
"dateCreated": "2025-07-17T18:31:50.089Z",
"enabled": true,
"probeId": 1,
"probeSettingsId": 1,
"probeType": "text",
"userInputConfig": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint retrieves the probe settings for a specific target in a workspace. Probe settings define how probes are configured and used for testing vulnerabilities.
Workspace Id.
Target Id.
GET /api/workspaces/{workspaceId}/target/{targetId}/probe-settings HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
[
{
"dateCreated": "2025-07-17T18:31:50.089Z",
"enabled": true,
"probeId": 1,
"probeSettingsId": 1,
"probeType": "text",
"userInputConfig": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
Last updated