Security Attack discovery API
Get Attack Discovery schedule by ID
Spaces method and path for this operation:
<div><span class="operation-verb get">get</span> <span class="operation-path">/s/{space_id}/api/attack_discovery/schedules/{id}</span></div>Refer to Spaces for more information.
Retrieves a specific Attack Discovery schedule by its unique identifier. Returns complete schedule configuration including parameters, interval settings, associated actions, and execution history.
get/api/attack_discovery/schedules/{id}
Path parameters
idstring nonempty required
A string that does not contain only whitespace characters.
Example:I am a string
The unique identifier (UUID) of the Attack Discovery schedule to retrieve. This ID is returned when creating a schedule and can be found in schedule listings.
Response
Successfully retrieved Attack Discovery schedule with complete configuration and metadata
Example response
{
"actions": [
{
"frequency": {
"throttle": "1h"
},
"uuid": "I am a string"
}
],
"params": {
"api_config": {
"actionTypeId": "actionType456",
"connectorId": "connector123",
"defaultSystemPromptId": "systemPrompt001",
"model": "gpt-4",
"provider": "OpenAI"
}
}
}