Security Attack discovery API
Find Attack Discovery schedules that match the search criteria
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/_find</span></div>Refer to Spaces for more information.
Find Attack Discovery schedules that match the search criteria. Supports pagination and sorting by various fields.
get/api/attack_discovery/schedules/_find
Query parameters
pagenumber
Page number to return (used for pagination). Defaults to 1.
per_pagenumber
Number of Attack Discovery schedules to return per page (used for pagination). Defaults to 10.
sort_fieldstring nonempty
A string that does not contain only whitespace characters.
Example:I am a string
Field used to sort results. Common fields include 'name', 'created_at', 'updated_at', and 'enabled'.
sort_direction'asc' | 'desc'
Sort order direction. Use 'asc' for ascending or 'desc' for descending. Defaults to 'asc'.
Response
Indicates a successful call.
Example response
{
"data": [
{
"actions": [
{
"frequency": {
"throttle": "1h"
},
"uuid": "I am a string"
}
],
"params": {
"api_config": {
"actionTypeId": "actionType456",
"connectorId": "connector123",
"defaultSystemPromptId": "systemPrompt001",
"model": "gpt-4",
"provider": "OpenAI"
}
}
}
]
}