v53

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-076771,7565.2 MB
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>&nbsp;<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

created_atstring date-time required

The date the schedule was created

created_bystring required

The name of the user that created the schedule

enabledboolean required

Indicates whether the schedule is enabled

idstring required

UUID of Attack Discovery schedule

namestring required

The name of the schedule

updated_atstring date-time required

The date the schedule was updated

updated_bystring required

The name of the user that updated the schedule

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"
    }
  }
}