CISO Assistant API + MCP Server + A2A Agent — 100% API coverage
Project description
CISO Assistant - A2A | AG-UI | MCP
Version: 1.0.1
Overview
CISO Assistant is a production-grade Python API client, Model Context Protocol (MCP) server, and A2A agent for CISO Assistant, intuitem's open-source GRC platform for Risk Management, AppSec, Compliance & Audit, TPRM, BIA, Privacy, and Reporting.
It provides 100% coverage of the CISO Assistant REST API — every one of the
~1,565 operations in the drf-spectacular schema is exposed as both a typed
client method and an action-routed MCP tool. The client, MCP tools, and a
machine-readable coverage manifest are all generated from the vendored OpenAPI
spec (ciso_assistant_api/specs/ciso_assistant.json) by
scripts/generate_from_openapi.py, and a coverage test asserts the three sets
stay in lock-step.
Key Features
- 100% Action-Routed MCP Tools — one consolidated tool per domain (e.g.
ciso_assistant_compliance,ciso_assistant_risk_management,ciso_assistant_incidents) takes anactionplus aparams_jsonpayload and routes to the underlying API method. 19 domain tools (mirroring the published documentation categories) cover every endpoint without flooding the IDE tool list. - Full CISO Assistant surface — Analytics & Metrology, Assets, Authentication & Users, Compliance, EBIOS-RM, Evidence & Attachments, Frameworks & Libraries, Governance, Incidents, Integrations, Privacy, Quantitative Risk (CRQ), Resilience, Risk Management, Security Exceptions & Findings, Settings, Tasks & Timeline, and Third-Party Risk Management.
- Knox token auth — a pre-minted Knox token or a username/password pair
exchanged for a token at
POST /api/iam/login/, plus OIDC delegation (RFC 8693) viaagent-utilities. - Resilient — honours
429Retry-After, retries transient5xx, and transparently follows DRFnextpagination links.
MCP
Using as an MCP Server
The MCP Server runs in stdio (local) or streamable-http (networked) mode.
Each domain is a tool gated by a {TAG}TOOL environment variable (default True),
so you can scope the surface (e.g. set CHATTOOL=False to drop the chat domain).
Environment Variables
Package environment variables
| Variable | Example | Description |
|---|---|---|
CISO_ASSISTANT_URL |
— | Backend host URL, e.g. https://ciso.arpa or http://localhost:8000 |
CISO_ASSISTANT_TOKEN |
— | 1) Pre-minted Knox token (My Profile > Settings, or manage.py generated) |
CISO_ASSISTANT_USERNAME |
— | 2) Credentials exchanged for a token at POST /api/iam/login/ |
CISO_ASSISTANT_PASSWORD |
— | |
CISO_ASSISTANT_SSL_VERIFY |
True |
─── HTTP behaviour ──────────────────────────────────────────────────── |
FASTMCP_LOG_LEVEL |
INFO |
─── MCP transport / auth (agent-utilities) ──────────────────────────── |
TRANSPORT |
stdio |
|
AUTH_TYPE |
none |
|
ANALYTICS_METROLOGYTOOL |
True |
analytics-metrology tools |
ASSETSTOOL |
True |
assets tools |
AUTH_USERSTOOL |
True |
auth-users tools |
CHATTOOL |
True |
chat tools |
COMPLIANCETOOL |
True |
compliance tools |
CRQTOOL |
True |
crq tools |
CUSTOM_APITOOL |
True |
custom-api tools |
EBIOS_RMTOOL |
True |
ebios-rm tools |
EVIDENCETOOL |
True |
evidence tools |
FRAMEWORKS_LIBRARIESTOOL |
True |
frameworks-libraries tools |
GOVERNANCETOOL |
True |
governance tools |
INCIDENTSTOOL |
True |
incidents tools |
INTEGRATIONSTOOL |
True |
integrations tools |
PRIVACYTOOL |
True |
privacy tools |
RESILIENCETOOL |
True |
resilience tools |
RISK_MANAGEMENTTOOL |
True |
risk-management tools |
SECURITY_FINDINGSTOOL |
True |
security-findings tools |
SETTINGSTOOL |
True |
settings tools |
TASKS_TIMELINETOOL |
True |
tasks-timeline tools |
THIRD_PARTYTOOL |
True |
third-party tools |
Inherited agent-utilities variables (apply to every connector)
| Variable | Example | Description |
|---|---|---|
HOST |
0.0.0.0 |
Bind host (HTTP transports) |
PORT |
8000 |
Bind port (HTTP transports) |
MCP_TOOL_MODE |
condensed |
Tool surface: condensed |
MCP_ENABLED_TOOLS |
— | Comma-separated tool allow-list |
MCP_DISABLED_TOOLS |
— | Comma-separated tool deny-list |
MCP_ENABLED_TAGS |
— | Comma-separated tag allow-list |
MCP_DISABLED_TAGS |
— | Comma-separated tag deny-list |
EUNOMIA_TYPE |
none |
Authorization mode: none |
EUNOMIA_POLICY_FILE |
mcp_policies.json |
Embedded Eunomia policy file |
EUNOMIA_REMOTE_URL |
— | Remote Eunomia authorization server URL |
ENABLE_OTEL |
False |
Enable OpenTelemetry export |
OTEL_EXPORTER_OTLP_ENDPOINT |
— | OTLP collector endpoint |
MCP_CLIENT_AUTH |
— | Outbound MCP auth (oidc-client-credentials for fleet calls) |
OIDC_CLIENT_ID |
— | OIDC client id (service-account auth) |
OIDC_CLIENT_SECRET |
— | OIDC client secret (service-account auth) |
DEBUG |
False |
Verbose logging |
PYTHONUNBUFFERED |
1 |
Unbuffered stdout (recommended in containers) |
MCP_URL |
http://localhost:8000/mcp |
URL of the MCP server the agent connects to |
PROVIDER |
openai |
LLM provider for the agent |
MODEL_ID |
gpt-4o |
Model id for the agent |
ENABLE_WEB_UI |
True |
Serve the AG-UI web interface |
28 package + 21 inherited variable(s). Auto-generated from .env.example + the shared agent-utilities set — do not edit.
| Variable | Description |
|---|---|
CISO_ASSISTANT_URL |
Backend host URL, e.g. https://ciso.arpa or http://localhost:8000. |
CISO_ASSISTANT_TOKEN |
Pre-minted Knox token. |
CISO_ASSISTANT_USERNAME / CISO_ASSISTANT_PASSWORD |
Credentials exchanged for a token at POST /api/iam/login/. |
CISO_ASSISTANT_SSL_VERIFY |
Verify TLS (default True). |
<DOMAIN>TOOL |
Toggle a domain tool, e.g. INCIDENTSTOOL, COMPLIANCETOOL, RISK_MANAGEMENTTOOL (default True). See the Available MCP Tools table for the authoritative names. |
The server also reads the standard MCP-transport, telemetry, governance, and agent-CLI variables:
| Variable | Description | Default |
|---|---|---|
TRANSPORT |
stdio, streamable-http, or sse |
stdio |
HOST |
Bind host (HTTP transports) | 0.0.0.0 |
PORT |
Bind port (HTTP transports) | 8000 |
MCP_TOOL_MODE |
Tool surface: condensed, verbose, or both |
condensed |
MCP_ENABLED_TOOLS / MCP_DISABLED_TOOLS |
Comma-separated tool allow/deny list | — |
MCP_ENABLED_TAGS / MCP_DISABLED_TAGS |
Comma-separated tag allow/deny list | — |
DEBUG |
Verbose logging | False |
PYTHONUNBUFFERED |
Unbuffered stdout (recommended in containers) | 1 |
ENABLE_OTEL |
Enable OpenTelemetry export | True |
OTEL_EXPORTER_OTLP_ENDPOINT |
OTLP collector endpoint | — |
OTEL_EXPORTER_OTLP_PUBLIC_KEY / OTEL_EXPORTER_OTLP_SECRET_KEY |
OTLP auth keys | — |
OTEL_EXPORTER_OTLP_PROTOCOL |
OTLP protocol (e.g. http/protobuf) |
— |
EUNOMIA_TYPE |
Authorization mode: none, embedded, remote |
none |
EUNOMIA_POLICY_FILE |
Embedded policy file | mcp_policies.json |
EUNOMIA_REMOTE_URL |
Remote Eunomia server URL | — |
MCP_URL |
(Agent only) URL of the MCP server the agent connects to | http://localhost:8000/mcp |
PROVIDER |
(Agent only) LLM provider (e.g. openai) |
openai |
MODEL_ID |
(Agent only) Model id (e.g. gpt-4o) |
gpt-4o |
ENABLE_WEB_UI |
(Agent only) Serve the AG-UI web interface | True |
Run in stdio mode (default):
export CISO_ASSISTANT_URL="https://ciso.arpa"
export CISO_ASSISTANT_TOKEN="your_token"
ciso-assistant-mcp --transport "stdio"
Run in HTTP mode:
export CISO_ASSISTANT_URL="https://ciso.arpa"
export CISO_ASSISTANT_TOKEN="your_token"
ciso-assistant-mcp --transport "streamable-http" --host "0.0.0.0" --port "8000"
Available MCP Tools
Auto-generated — do not edit (synced by the mcp-readme-table pre-commit hook).
Condensed action-routed tools (default — MCP_TOOL_MODE=condensed)
| MCP Tool | Toggle Env Var | Description |
|---|---|---|
ciso_assistant_analytics_metrology |
ANALYTICS_METROLOGYTOOL |
Manage CISO Assistant analytics metrology operations. |
ciso_assistant_api_request |
CUSTOM_APITOOL |
Execute an arbitrary CISO Assistant REST API request directly. |
ciso_assistant_assets |
ASSETSTOOL |
Manage CISO Assistant assets operations. |
ciso_assistant_auth_users |
AUTH_USERSTOOL |
Manage CISO Assistant auth users operations. |
ciso_assistant_chat |
CHATTOOL |
Manage CISO Assistant chat operations. |
ciso_assistant_compliance |
COMPLIANCETOOL |
Manage CISO Assistant compliance operations. |
ciso_assistant_crq |
CRQTOOL |
Manage CISO Assistant crq operations. |
ciso_assistant_ebios_rm |
EBIOS_RMTOOL |
Manage CISO Assistant ebios rm operations. |
ciso_assistant_evidence |
EVIDENCETOOL |
Manage CISO Assistant evidence operations. |
ciso_assistant_frameworks_libraries |
FRAMEWORKS_LIBRARIESTOOL |
Manage CISO Assistant frameworks libraries operations. |
ciso_assistant_governance |
GOVERNANCETOOL |
Manage CISO Assistant governance operations. |
ciso_assistant_incidents |
INCIDENTSTOOL |
Manage CISO Assistant incidents operations. |
ciso_assistant_integrations |
INTEGRATIONSTOOL |
Manage CISO Assistant integrations operations. |
ciso_assistant_privacy |
PRIVACYTOOL |
Manage CISO Assistant privacy operations. |
ciso_assistant_resilience |
RESILIENCETOOL |
Manage CISO Assistant resilience operations. |
ciso_assistant_risk_management |
RISK_MANAGEMENTTOOL |
Manage CISO Assistant risk management operations. |
ciso_assistant_security_findings |
SECURITY_FINDINGSTOOL |
Manage CISO Assistant security findings operations. |
ciso_assistant_settings |
SETTINGSTOOL |
Manage CISO Assistant settings operations. |
ciso_assistant_tasks_timeline |
TASKS_TIMELINETOOL |
Manage CISO Assistant tasks timeline operations. |
ciso_assistant_third_party |
THIRD_PARTYTOOL |
Manage CISO Assistant third party operations. |
Verbose 1:1 API-mapped tools (MCP_TOOL_MODE=verbose or both)
1565 per-operation tools — one per public API method (click to expand)
| MCP Tool | Toggle Env Var | Description |
|---|---|---|
ciso_assistant_api_accounts_saml_download_cert_retrieve |
AUTH_USERSTOOL |
api_accounts_saml_download_cert_retrieve |
ciso_assistant_api_accounts_saml_generate_keys_create |
AUTH_USERSTOOL |
Endpoint to generate a key pair (private key + self-signed X.509 certificate). |
ciso_assistant_api_actors_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_actors_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_actors_object_retrieve |
THIRD_PARTYTOOL |
api_actors_object_retrieve |
ciso_assistant_api_actors_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_agg_data_retrieve |
ANALYTICS_METROLOGYTOOL |
api_agg_data_retrieve |
ciso_assistant_api_analytics_export_xlsx_retrieve |
ANALYTICS_METROLOGYTOOL |
Export all analytics dashboard data as a multi-sheet XLSX file. |
ciso_assistant_api_answers_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_answers_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_answers_create |
TASKS_TIMELINETOOL |
API endpoint for Answer CRUD. |
ciso_assistant_api_answers_destroy |
TASKS_TIMELINETOOL |
API endpoint for Answer CRUD. |
ciso_assistant_api_answers_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_answers_object_retrieve |
TASKS_TIMELINETOOL |
API endpoint for Answer CRUD. |
ciso_assistant_api_answers_partial_update |
TASKS_TIMELINETOOL |
API endpoint for Answer CRUD. |
ciso_assistant_api_answers_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_answers_update |
TASKS_TIMELINETOOL |
API endpoint for Answer CRUD. |
ciso_assistant_api_applied_controls_analytics_retrieve |
COMPLIANCETOOL |
Aggregated analytics over the filtered applied-controls queryset. |
ciso_assistant_api_applied_controls_autocomplete_retrieve |
COMPLIANCETOOL |
Minimal endpoint for autocomplete selects. |
ciso_assistant_api_applied_controls_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_applied_controls_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_applied_controls_category_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_control_impact_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_csf_function_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_destroy |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_duplicate_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_effort_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_export_csv_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_export_xlsx_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_get_controls_info_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_get_gantt_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_get_timeline_info_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_ids_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_impact_effort_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_impact_graph_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_linked_models_retrieve |
COMPLIANCETOOL |
Return available model types that can be linked to applied controls |
ciso_assistant_api_applied_controls_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_applied_controls_merge_create |
COMPLIANCETOOL |
Merge N source applied controls into 1 target. See |
ciso_assistant_api_applied_controls_mss_xlsx_retrieve |
COMPLIANCETOOL |
Export filtered applied controls in ANSSI MonServiceSécurisé format |
ciso_assistant_api_applied_controls_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_owner_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_partial_update |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_per_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_priority_chart_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_priority_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_applied_controls_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_sunburst_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_sync_to_reference_control_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_to_review_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_todo_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_updatables_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_applied_controls_update |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_asset_capabilities_batch_action_create |
ASSETSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_asset_capabilities_cascade_info_retrieve |
ASSETSTOOL |
Cascade preview: |
ciso_assistant_api_asset_capabilities_create |
ASSETSTOOL |
api_asset_capabilities_create |
ciso_assistant_api_asset_capabilities_destroy |
ASSETSTOOL |
api_asset_capabilities_destroy |
ciso_assistant_api_asset_capabilities_list |
ASSETSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_asset_capabilities_object_retrieve |
ASSETSTOOL |
api_asset_capabilities_object_retrieve |
ciso_assistant_api_asset_capabilities_partial_update |
ASSETSTOOL |
api_asset_capabilities_partial_update |
ciso_assistant_api_asset_capabilities_retrieve |
ASSETSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_asset_capabilities_update |
ASSETSTOOL |
api_asset_capabilities_update |
ciso_assistant_api_asset_class_batch_action_create |
ASSETSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_asset_class_cascade_info_retrieve |
ASSETSTOOL |
Cascade preview: |
ciso_assistant_api_asset_class_create |
ASSETSTOOL |
api_asset_class_create |
ciso_assistant_api_asset_class_destroy |
ASSETSTOOL |
api_asset_class_destroy |
ciso_assistant_api_asset_class_list |
ASSETSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_asset_class_object_retrieve |
ASSETSTOOL |
api_asset_class_object_retrieve |
ciso_assistant_api_asset_class_partial_update |
ASSETSTOOL |
api_asset_class_partial_update |
ciso_assistant_api_asset_class_retrieve |
ASSETSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_asset_class_tree_retrieve |
ASSETSTOOL |
api_asset_class_tree_retrieve |
ciso_assistant_api_asset_class_update |
ASSETSTOOL |
api_asset_class_update |
ciso_assistant_api_assets_asset_class_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_autocomplete_retrieve |
ASSETSTOOL |
Minimal endpoint for autocomplete selects — skips graph traversal. |
ciso_assistant_api_assets_batch_action_create |
ASSETSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_assets_batch_create_create |
ASSETSTOOL |
Batch create multiple assets from a text list with parent-child relationships. |
ciso_assistant_api_assets_cascade_info_retrieve |
ASSETSTOOL |
Cascade preview: |
ciso_assistant_api_assets_create |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_destroy |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_disaster_recovery_objectives_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_dora_criticality_assessment_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_dora_discontinuing_impact_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_dora_licenced_activity_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_export_csv_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_export_xlsx_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_graph_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_ids_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_list |
ASSETSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_assets_object_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_partial_update |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_retrieve |
ASSETSTOOL |
Populate optimized_data for the single retrieved asset so the |
ciso_assistant_api_assets_security_objectives_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_type_retrieve |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_assets_update |
ASSETSTOOL |
API endpoint that allows assets to be viewed or edited. |
ciso_assistant_api_build_retrieve |
INTEGRATIONSTOOL |
API endpoint that returns the build version of the application. |
ciso_assistant_api_campaigns_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_campaigns_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_campaigns_create |
TASKS_TIMELINETOOL |
api_campaigns_create |
ciso_assistant_api_campaigns_destroy |
TASKS_TIMELINETOOL |
api_campaigns_destroy |
ciso_assistant_api_campaigns_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_campaigns_metrics_retrieve |
TASKS_TIMELINETOOL |
api_campaigns_metrics_retrieve |
ciso_assistant_api_campaigns_object_retrieve |
TASKS_TIMELINETOOL |
api_campaigns_object_retrieve |
ciso_assistant_api_campaigns_partial_update |
TASKS_TIMELINETOOL |
api_campaigns_partial_update |
ciso_assistant_api_campaigns_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_campaigns_status_retrieve |
TASKS_TIMELINETOOL |
api_campaigns_status_retrieve |
ciso_assistant_api_campaigns_update |
TASKS_TIMELINETOOL |
api_campaigns_update |
ciso_assistant_api_chat_agent_actions_approve_create |
CHATTOOL |
api_chat_agent_actions_approve_create |
ciso_assistant_api_chat_agent_actions_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_agent_actions_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_agent_actions_create |
CHATTOOL |
api_chat_agent_actions_create |
ciso_assistant_api_chat_agent_actions_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_agent_actions_object_retrieve |
CHATTOOL |
api_chat_agent_actions_object_retrieve |
ciso_assistant_api_chat_agent_actions_reject_create |
CHATTOOL |
api_chat_agent_actions_reject_create |
ciso_assistant_api_chat_agent_actions_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_agent_runs_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_agent_runs_cancel_create |
CHATTOOL |
Mark an active run as cancelled. The worker checks before each step. |
ciso_assistant_api_chat_agent_runs_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_agent_runs_create |
CHATTOOL |
api_chat_agent_runs_create |
ciso_assistant_api_chat_agent_runs_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_agent_runs_object_retrieve |
CHATTOOL |
api_chat_agent_runs_object_retrieve |
ciso_assistant_api_chat_agent_runs_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_agent_runs_start_questionnaire_prefill_create |
CHATTOOL |
Create + enqueue an AgentRun for prefilling a questionnaire. |
ciso_assistant_api_chat_documents_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_documents_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_documents_create |
CHATTOOL |
ViewSet for managing indexed documents. |
ciso_assistant_api_chat_documents_destroy |
CHATTOOL |
ViewSet for managing indexed documents. |
ciso_assistant_api_chat_documents_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_documents_object_retrieve |
CHATTOOL |
ViewSet for managing indexed documents. |
ciso_assistant_api_chat_documents_partial_update |
CHATTOOL |
ViewSet for managing indexed documents. |
ciso_assistant_api_chat_documents_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_documents_update |
CHATTOOL |
ViewSet for managing indexed documents. |
ciso_assistant_api_chat_ollama_models_retrieve |
CHATTOOL |
List available models from the Ollama server. |
ciso_assistant_api_chat_questionnaire_questions_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_questionnaire_questions_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_questionnaire_questions_create |
CHATTOOL |
api_chat_questionnaire_questions_create |
ciso_assistant_api_chat_questionnaire_questions_create_and_retry_create |
CHATTOOL |
Create an AppliedControl in the question's folder from a (possibly |
ciso_assistant_api_chat_questionnaire_questions_destroy |
CHATTOOL |
api_chat_questionnaire_questions_destroy |
ciso_assistant_api_chat_questionnaire_questions_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_questionnaire_questions_object_retrieve |
CHATTOOL |
api_chat_questionnaire_questions_object_retrieve |
ciso_assistant_api_chat_questionnaire_questions_partial_update |
CHATTOOL |
api_chat_questionnaire_questions_partial_update |
ciso_assistant_api_chat_questionnaire_questions_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_questionnaire_questions_retry_with_control_create |
CHATTOOL |
Re-run a single question's answer pipeline with a chosen |
ciso_assistant_api_chat_questionnaire_questions_suggest_control_create |
CHATTOOL |
Synchronous LLM call: draft an AppliedControl that would let us |
ciso_assistant_api_chat_questionnaire_questions_update |
CHATTOOL |
api_chat_questionnaire_questions_update |
ciso_assistant_api_chat_questionnaire_runs_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_questionnaire_runs_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_questionnaire_runs_create |
CHATTOOL |
Experimental: questionnaire prefill runs. |
ciso_assistant_api_chat_questionnaire_runs_destroy |
CHATTOOL |
Experimental: questionnaire prefill runs. |
ciso_assistant_api_chat_questionnaire_runs_export_retrieve |
CHATTOOL |
Stream a copy of the original xlsx with response/comment columns |
ciso_assistant_api_chat_questionnaire_runs_extract_questions_create |
CHATTOOL |
Materialize QuestionnaireQuestion rows from parsed_data + column_mapping. |
ciso_assistant_api_chat_questionnaire_runs_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_questionnaire_runs_mapping_partial_update |
CHATTOOL |
Persist the user's column-mapping choice for this run. |
ciso_assistant_api_chat_questionnaire_runs_object_retrieve |
CHATTOOL |
Experimental: questionnaire prefill runs. |
ciso_assistant_api_chat_questionnaire_runs_partial_update |
CHATTOOL |
Experimental: questionnaire prefill runs. |
ciso_assistant_api_chat_questionnaire_runs_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_questionnaire_runs_update |
CHATTOOL |
Experimental: questionnaire prefill runs. |
ciso_assistant_api_chat_questionnaire_runs_upload_create |
CHATTOOL |
Multipart upload entry point: file + folder + optional title. |
ciso_assistant_api_chat_sessions_batch_action_create |
CHATTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_chat_sessions_cascade_info_retrieve |
CHATTOOL |
Cascade preview: |
ciso_assistant_api_chat_sessions_create |
CHATTOOL |
ViewSet for chat sessions with streaming message endpoint. |
ciso_assistant_api_chat_sessions_destroy |
CHATTOOL |
ViewSet for chat sessions with streaming message endpoint. |
ciso_assistant_api_chat_sessions_list |
CHATTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_chat_sessions_message_create |
CHATTOOL |
Send a message and get a streaming SSE response. |
ciso_assistant_api_chat_sessions_object_retrieve |
CHATTOOL |
ViewSet for chat sessions with streaming message endpoint. |
ciso_assistant_api_chat_sessions_partial_update |
CHATTOOL |
ViewSet for chat sessions with streaming message endpoint. |
ciso_assistant_api_chat_sessions_retrieve |
CHATTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_chat_sessions_update |
CHATTOOL |
ViewSet for chat sessions with streaming message endpoint. |
ciso_assistant_api_chat_sessions_upload_create |
CHATTOOL |
Upload a document to be indexed for RAG in this session's folder context. |
ciso_assistant_api_chat_status_retrieve |
CHATTOOL |
Check chat service health: Ollama availability, index status. |
ciso_assistant_api_comments_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_comments_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_comments_create |
GOVERNANCETOOL |
api_comments_create |
ciso_assistant_api_comments_destroy |
GOVERNANCETOOL |
api_comments_destroy |
ciso_assistant_api_comments_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_comments_object_retrieve |
GOVERNANCETOOL |
api_comments_object_retrieve |
ciso_assistant_api_comments_partial_update |
GOVERNANCETOOL |
api_comments_partial_update |
ciso_assistant_api_comments_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_comments_update |
GOVERNANCETOOL |
api_comments_update |
ciso_assistant_api_compliance_assessments_action_plan_budget_overview_list |
COMPLIANCETOOL |
Mixin that computes budget aggregation over an applied controls queryset. |
ciso_assistant_api_compliance_assessments_action_plan_csv_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_action_plan_list |
COMPLIANCETOOL |
api_compliance_assessments_action_plan_list |
ciso_assistant_api_compliance_assessments_action_plan_pdf_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_action_plan_xlsx_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_analytics_retrieve |
COMPLIANCETOOL |
Returns compliance analytics data grouped by framework and domain |
ciso_assistant_api_compliance_assessments_auditee_dashboard_retrieve |
COMPLIANCETOOL |
Returns per-assignment progress data for the auditee's dashboard. |
ciso_assistant_api_compliance_assessments_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_compliance_assessments_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_compliance_assessments_combined_tree_retrieve |
COMPLIANCETOOL |
Requirement tree with domain-tree inheritance applied as an overlay. |
ciso_assistant_api_compliance_assessments_comparable_audits_retrieve |
COMPLIANCETOOL |
Get list of compliance assessments that can be compared with this one |
ciso_assistant_api_compliance_assessments_compare_retrieve |
COMPLIANCETOOL |
Compare two compliance assessments that use the same framework |
ciso_assistant_api_compliance_assessments_compliance_assessment_csv_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_compliance_timeline_retrieve |
COMPLIANCETOOL |
Returns compliance metrics over time from HistoricalMetric snapshots. |
ciso_assistant_api_compliance_assessments_controls_coverage_retrieve |
COMPLIANCETOOL |
Controls coverage analysis for this compliance assessment. |
ciso_assistant_api_compliance_assessments_create |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_cyfun_xlsx_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_destroy |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_donut_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_evidence_coverage_retrieve |
COMPLIANCETOOL |
Evidence coverage analysis — direct (on RA) and indirect (via applied controls). |
ciso_assistant_api_compliance_assessments_evidences_list_list |
COMPLIANCETOOL |
api_compliance_assessments_evidences_list_list |
ciso_assistant_api_compliance_assessments_exceptions_summary_retrieve |
COMPLIANCETOOL |
Security exceptions summary for this compliance assessment. |
ciso_assistant_api_compliance_assessments_export_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_frameworks_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_global_score_retrieve |
COMPLIANCETOOL |
Returns the global score of the compliance assessment |
ciso_assistant_api_compliance_assessments_implementation_groups_breakdown_retrieve |
COMPLIANCETOOL |
Breakdown of compliance results by implementation group. |
ciso_assistant_api_compliance_assessments_is_auditee_retrieve |
COMPLIANCETOOL |
Returns whether the current user is an auditee for this compliance assessment. |
ciso_assistant_api_compliance_assessments_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_compliance_assessments_mailing_create |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_map_from_create |
COMPLIANCETOOL |
Map data from a source audit into this one. |
ciso_assistant_api_compliance_assessments_map_from_preview_retrieve |
COMPLIANCETOOL |
Preview the effect of mapping data from a source audit into this one. |
ciso_assistant_api_compliance_assessments_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_partial_update |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_per_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_progress_ts_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_quality_check_retrieve |
COMPLIANCETOOL |
Returns the quality check of every compliance assessment |
ciso_assistant_api_compliance_assessments_quality_check_retrieve_2 |
COMPLIANCETOOL |
Returns the quality check of a specific assessment |
ciso_assistant_api_compliance_assessments_recap_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_requirements_list_retrieve |
COMPLIANCETOOL |
Returns the list of requirement assessments for the different audit modes |
ciso_assistant_api_compliance_assessments_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_compliance_assessments_score_calculation_method_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_section_compliance_retrieve |
COMPLIANCETOOL |
Aggregates compliance results and scores per top-level requirement group. |
ciso_assistant_api_compliance_assessments_soa_retrieve |
COMPLIANCETOOL |
Returns the requirement tree enriched with applied controls and |
ciso_assistant_api_compliance_assessments_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_suggestions_applied_controls_create |
COMPLIANCETOOL |
api_compliance_assessments_suggestions_applied_controls_create |
ciso_assistant_api_compliance_assessments_suggestions_applied_controls_retrieve |
COMPLIANCETOOL |
api_compliance_assessments_suggestions_applied_controls_retrieve |
ciso_assistant_api_compliance_assessments_sync_to_actions_create |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_sync_to_actions_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_threats_metrics_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_tree_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_update |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_update_requirement_create |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_compliance_assessments_word_report_retrieve |
COMPLIANCETOOL |
Word report generation (Exec) |
ciso_assistant_api_compliance_assessments_xlsx_retrieve |
COMPLIANCETOOL |
API endpoint that allows compliance assessments to be viewed or edited. |
ciso_assistant_api_composer_data_retrieve |
ANALYTICS_METROLOGYTOOL |
api_composer_data_retrieve |
ciso_assistant_api_content_types_retrieve |
INTEGRATIONSTOOL |
api_content_types_retrieve |
ciso_assistant_api_contracts_batch_action_create |
THIRD_PARTYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_contracts_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_contracts_create |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_currency_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_destroy |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_dora_contractual_arrangement_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_export_csv_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_export_xlsx_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_governing_law_country_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_contracts_object_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_partial_update |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_contracts_status_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_termination_reason_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_contracts_update |
THIRD_PARTYTOOL |
API endpoint that allows contracts to be viewed or edited. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_batch_action_create |
CRQTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_cascade_info_retrieve |
CRQTOOL |
Cascade preview: |
ciso_assistant_api_crq_quantitative_risk_hypotheses_create |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_create |
ciso_assistant_api_crq_quantitative_risk_hypotheses_default_ref_id_retrieve |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_default_ref_id_retrieve |
ciso_assistant_api_crq_quantitative_risk_hypotheses_destroy |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_destroy |
ciso_assistant_api_crq_quantitative_risk_hypotheses_lec_retrieve |
CRQTOOL |
Returns the Loss Exceedance Curve data from stored simulation results. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_list |
CRQTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_object_retrieve |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_object_retrieve |
ciso_assistant_api_crq_quantitative_risk_hypotheses_partial_update |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_partial_update |
ciso_assistant_api_crq_quantitative_risk_hypotheses_retrieve |
CRQTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_risk_stage_retrieve |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_risk_stage_retrieve |
ciso_assistant_api_crq_quantitative_risk_hypotheses_run_simulation_retrieve |
CRQTOOL |
Triggers a Monte Carlo simulation for a specific risk hypothesis. |
ciso_assistant_api_crq_quantitative_risk_hypotheses_update |
CRQTOOL |
api_crq_quantitative_risk_hypotheses_update |
ciso_assistant_api_crq_quantitative_risk_scenarios_batch_action_create |
CRQTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_crq_quantitative_risk_scenarios_cascade_info_retrieve |
CRQTOOL |
Cascade preview: |
ciso_assistant_api_crq_quantitative_risk_scenarios_create |
CRQTOOL |
api_crq_quantitative_risk_scenarios_create |
ciso_assistant_api_crq_quantitative_risk_scenarios_default_ref_id_retrieve |
CRQTOOL |
api_crq_quantitative_risk_scenarios_default_ref_id_retrieve |
ciso_assistant_api_crq_quantitative_risk_scenarios_destroy |
CRQTOOL |
api_crq_quantitative_risk_scenarios_destroy |
ciso_assistant_api_crq_quantitative_risk_scenarios_lec_retrieve |
CRQTOOL |
Returns combined Loss Exceedance Curve data for the scenario: |
ciso_assistant_api_crq_quantitative_risk_scenarios_list |
CRQTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_crq_quantitative_risk_scenarios_object_retrieve |
CRQTOOL |
api_crq_quantitative_risk_scenarios_object_retrieve |
ciso_assistant_api_crq_quantitative_risk_scenarios_partial_update |
CRQTOOL |
api_crq_quantitative_risk_scenarios_partial_update |
ciso_assistant_api_crq_quantitative_risk_scenarios_priority_retrieve |
CRQTOOL |
api_crq_quantitative_risk_scenarios_priority_retrieve |
ciso_assistant_api_crq_quantitative_risk_scenarios_retrieve |
CRQTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_crq_quantitative_risk_scenarios_status_retrieve |
CRQTOOL |
api_crq_quantitative_risk_scenarios_status_retrieve |
ciso_assistant_api_crq_quantitative_risk_scenarios_update |
CRQTOOL |
api_crq_quantitative_risk_scenarios_update |
ciso_assistant_api_crq_quantitative_risk_studies_action_plan_budget_overview_list |
CRQTOOL |
Mixin that computes budget aggregation over an applied controls queryset. |
ciso_assistant_api_crq_quantitative_risk_studies_action_plan_list |
CRQTOOL |
Action plan for quantitative risk studies. |
ciso_assistant_api_crq_quantitative_risk_studies_ale_comparison_retrieve |
CRQTOOL |
Returns data for ALE comparison chart showing: |
ciso_assistant_api_crq_quantitative_risk_studies_batch_action_create |
CRQTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_crq_quantitative_risk_studies_cascade_info_retrieve |
CRQTOOL |
Cascade preview: |
ciso_assistant_api_crq_quantitative_risk_studies_combined_ale_retrieve |
CRQTOOL |
Returns combined ALE metrics for the quantitative risk study: |
ciso_assistant_api_crq_quantitative_risk_studies_combined_lec_retrieve |
CRQTOOL |
Returns combined Loss Exceedance Curve data for the quantitative risk study: |
ciso_assistant_api_crq_quantitative_risk_studies_create |
CRQTOOL |
api_crq_quantitative_risk_studies_create |
ciso_assistant_api_crq_quantitative_risk_studies_destroy |
CRQTOOL |
api_crq_quantitative_risk_studies_destroy |
ciso_assistant_api_crq_quantitative_risk_studies_distribution_model_retrieve |
CRQTOOL |
api_crq_quantitative_risk_studies_distribution_model_retrieve |
ciso_assistant_api_crq_quantitative_risk_studies_executive_summary_retrieve |
CRQTOOL |
Returns executive summary data for the quantitative risk study. |
ciso_assistant_api_crq_quantitative_risk_studies_key_metrics_retrieve |
CRQTOOL |
Returns key metrics data for quantitative risk scenarios scoped per study. |
ciso_assistant_api_crq_quantitative_risk_studies_list |
CRQTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_crq_quantitative_risk_studies_object_retrieve |
CRQTOOL |
api_crq_quantitative_risk_studies_object_retrieve |
ciso_assistant_api_crq_quantitative_risk_studies_partial_update |
CRQTOOL |
api_crq_quantitative_risk_studies_partial_update |
ciso_assistant_api_crq_quantitative_risk_studies_retrieve |
CRQTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_crq_quantitative_risk_studies_retrigger_all_simulations_create |
CRQTOOL |
Retriggers all simulations for the quantitative risk study. |
ciso_assistant_api_crq_quantitative_risk_studies_status_retrieve |
CRQTOOL |
api_crq_quantitative_risk_studies_status_retrieve |
ciso_assistant_api_crq_quantitative_risk_studies_update |
CRQTOOL |
api_crq_quantitative_risk_studies_update |
ciso_assistant_api_csrf_retrieve |
AUTH_USERSTOOL |
API endpoint that returns the CSRF token. |
ciso_assistant_api_cwes_autocomplete_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_cwes_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_cwes_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_cwes_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_cwes_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_cwes_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_cwes_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_cwes_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_cwes_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_cwes_sync_catalog_create |
RISK_MANAGEMENTTOOL |
Sync CWE catalog from MITRE. |
ciso_assistant_api_cwes_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows CWEs to be viewed or edited. |
ciso_assistant_api_data_wizard_load_file_create |
INTEGRATIONSTOOL |
api_data_wizard_load_file_create |
ciso_assistant_api_document_attachments_batch_action_create |
EVIDENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_document_attachments_cascade_info_retrieve |
EVIDENCETOOL |
Cascade preview: |
ciso_assistant_api_document_attachments_create |
EVIDENCETOOL |
API endpoint for serving document attachment files. |
ciso_assistant_api_document_attachments_destroy |
EVIDENCETOOL |
API endpoint for serving document attachment files. |
ciso_assistant_api_document_attachments_file_retrieve |
EVIDENCETOOL |
Serve the attachment file with correct content type. |
ciso_assistant_api_document_attachments_object_retrieve |
EVIDENCETOOL |
API endpoint for serving document attachment files. |
ciso_assistant_api_document_attachments_partial_update |
EVIDENCETOOL |
API endpoint for serving document attachment files. |
ciso_assistant_api_document_attachments_retrieve |
EVIDENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_document_attachments_retrieve_2 |
EVIDENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_document_attachments_update |
EVIDENCETOOL |
API endpoint for serving document attachment files. |
ciso_assistant_api_document_revisions_approve_create |
EVIDENCETOOL |
Approve a revision: transition from in_review to validated. |
ciso_assistant_api_document_revisions_batch_action_create |
EVIDENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_document_revisions_cascade_info_retrieve |
EVIDENCETOOL |
Cascade preview: |
ciso_assistant_api_document_revisions_create |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_document_revisions_destroy |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_document_revisions_diff_retrieve |
EVIDENCETOOL |
Compute unified diff between this revision and another of the same document. |
ciso_assistant_api_document_revisions_edit_diff_retrieve |
EVIDENCETOOL |
Compute unified diff between two DocumentEdit content snapshots. |
ciso_assistant_api_document_revisions_edit_history_retrieve |
EVIDENCETOOL |
Return the edit history for this revision. |
ciso_assistant_api_document_revisions_edit_snapshot_retrieve |
EVIDENCETOOL |
Return the content snapshot of a specific edit. |
ciso_assistant_api_document_revisions_editing_status_retrieve |
EVIDENCETOOL |
Check who is currently editing. |
ciso_assistant_api_document_revisions_export_pdf_retrieve |
EVIDENCETOOL |
Export revision content as a PDF document. |
ciso_assistant_api_document_revisions_list |
EVIDENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_document_revisions_object_retrieve |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_document_revisions_partial_update |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_document_revisions_publish_create |
EVIDENCETOOL |
Publish a validated revision: deprecate previous, generate PDF. |
ciso_assistant_api_document_revisions_request_changes_create |
EVIDENCETOOL |
Request changes on an in-review revision. |
ciso_assistant_api_document_revisions_retrieve |
EVIDENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_document_revisions_start_editing_create |
EVIDENCETOOL |
Mark the current user as editing this revision. |
ciso_assistant_api_document_revisions_status_retrieve |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_document_revisions_stop_editing_create |
EVIDENCETOOL |
Release the editing lock. |
ciso_assistant_api_document_revisions_submit_for_review_create |
EVIDENCETOOL |
Transition from draft or change_requested to in_review. |
ciso_assistant_api_document_revisions_take_over_editing_create |
EVIDENCETOOL |
Force-acquire the editing lock, overriding the current editor. |
ciso_assistant_api_document_revisions_update |
EVIDENCETOOL |
API endpoint that allows document revisions to be viewed or edited. |
ciso_assistant_api_ebios_rm_attack_paths_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_attack_paths_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_attack_paths_create |
EBIOS_RMTOOL |
api_ebios_rm_attack_paths_create |
ciso_assistant_api_ebios_rm_attack_paths_destroy |
EBIOS_RMTOOL |
api_ebios_rm_attack_paths_destroy |
ciso_assistant_api_ebios_rm_attack_paths_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_attack_paths_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_attack_paths_object_retrieve |
ciso_assistant_api_ebios_rm_attack_paths_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_attack_paths_partial_update |
ciso_assistant_api_ebios_rm_attack_paths_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_attack_paths_update |
EBIOS_RMTOOL |
api_ebios_rm_attack_paths_update |
ciso_assistant_api_ebios_rm_elementary_actions_attack_stage_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_attack_stage_retrieve |
ciso_assistant_api_ebios_rm_elementary_actions_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_elementary_actions_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_elementary_actions_create |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_create |
ciso_assistant_api_ebios_rm_elementary_actions_destroy |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_destroy |
ciso_assistant_api_ebios_rm_elementary_actions_icon_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_icon_retrieve |
ciso_assistant_api_ebios_rm_elementary_actions_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_elementary_actions_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_object_retrieve |
ciso_assistant_api_ebios_rm_elementary_actions_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_partial_update |
ciso_assistant_api_ebios_rm_elementary_actions_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_elementary_actions_update |
EBIOS_RMTOOL |
api_ebios_rm_elementary_actions_update |
ciso_assistant_api_ebios_rm_feared_events_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_feared_events_batch_create_create |
EBIOS_RMTOOL |
Batch create multiple feared events from a text list. |
ciso_assistant_api_ebios_rm_feared_events_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_feared_events_create |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_create |
ciso_assistant_api_ebios_rm_feared_events_destroy |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_destroy |
ciso_assistant_api_ebios_rm_feared_events_gravity_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_gravity_retrieve |
ciso_assistant_api_ebios_rm_feared_events_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_feared_events_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_object_retrieve |
ciso_assistant_api_ebios_rm_feared_events_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_partial_update |
ciso_assistant_api_ebios_rm_feared_events_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_feared_events_risk_matrix_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_risk_matrix_retrieve |
ciso_assistant_api_ebios_rm_feared_events_update |
EBIOS_RMTOOL |
api_ebios_rm_feared_events_update |
ciso_assistant_api_ebios_rm_kill_chains_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_kill_chains_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_kill_chains_create |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_create |
ciso_assistant_api_ebios_rm_kill_chains_destroy |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_destroy |
ciso_assistant_api_ebios_rm_kill_chains_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_kill_chains_logic_operator_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_logic_operator_retrieve |
ciso_assistant_api_ebios_rm_kill_chains_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_object_retrieve |
ciso_assistant_api_ebios_rm_kill_chains_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_partial_update |
ciso_assistant_api_ebios_rm_kill_chains_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_kill_chains_update |
EBIOS_RMTOOL |
api_ebios_rm_kill_chains_update |
ciso_assistant_api_ebios_rm_operating_modes_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_operating_modes_build_graph_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_build_graph_retrieve |
ciso_assistant_api_ebios_rm_operating_modes_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_operating_modes_create |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_create |
ciso_assistant_api_ebios_rm_operating_modes_default_ref_id_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_default_ref_id_retrieve |
ciso_assistant_api_ebios_rm_operating_modes_destroy |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_destroy |
ciso_assistant_api_ebios_rm_operating_modes_likelihood_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_likelihood_retrieve |
ciso_assistant_api_ebios_rm_operating_modes_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_operating_modes_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_object_retrieve |
ciso_assistant_api_ebios_rm_operating_modes_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_partial_update |
ciso_assistant_api_ebios_rm_operating_modes_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_operating_modes_save_graph_create |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_save_graph_create |
ciso_assistant_api_ebios_rm_operating_modes_update |
EBIOS_RMTOOL |
api_ebios_rm_operating_modes_update |
ciso_assistant_api_ebios_rm_operational_scenarios_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_operational_scenarios_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_operational_scenarios_create |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_create |
ciso_assistant_api_ebios_rm_operational_scenarios_destroy |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_destroy |
ciso_assistant_api_ebios_rm_operational_scenarios_likelihood_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_likelihood_retrieve |
ciso_assistant_api_ebios_rm_operational_scenarios_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_operational_scenarios_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_object_retrieve |
ciso_assistant_api_ebios_rm_operational_scenarios_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_partial_update |
ciso_assistant_api_ebios_rm_operational_scenarios_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_operational_scenarios_risk_matrix_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_risk_matrix_retrieve |
ciso_assistant_api_ebios_rm_operational_scenarios_update |
EBIOS_RMTOOL |
api_ebios_rm_operational_scenarios_update |
ciso_assistant_api_ebios_rm_ro_to_activity_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_activity_retrieve |
ciso_assistant_api_ebios_rm_ro_to_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_ro_to_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_ro_to_create |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_create |
ciso_assistant_api_ebios_rm_ro_to_destroy |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_destroy |
ciso_assistant_api_ebios_rm_ro_to_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_ro_to_motivation_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_motivation_retrieve |
ciso_assistant_api_ebios_rm_ro_to_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_object_retrieve |
ciso_assistant_api_ebios_rm_ro_to_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_partial_update |
ciso_assistant_api_ebios_rm_ro_to_pertinence_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_pertinence_retrieve |
ciso_assistant_api_ebios_rm_ro_to_resources_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_resources_retrieve |
ciso_assistant_api_ebios_rm_ro_to_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_ro_to_update |
EBIOS_RMTOOL |
api_ebios_rm_ro_to_update |
ciso_assistant_api_ebios_rm_stakeholders_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_stakeholders_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_stakeholders_category_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_category_retrieve |
ciso_assistant_api_ebios_rm_stakeholders_chart_data_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_chart_data_retrieve |
ciso_assistant_api_ebios_rm_stakeholders_create |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_create |
ciso_assistant_api_ebios_rm_stakeholders_destroy |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_destroy |
ciso_assistant_api_ebios_rm_stakeholders_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_stakeholders_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_object_retrieve |
ciso_assistant_api_ebios_rm_stakeholders_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_partial_update |
ciso_assistant_api_ebios_rm_stakeholders_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_stakeholders_update |
EBIOS_RMTOOL |
api_ebios_rm_stakeholders_update |
ciso_assistant_api_ebios_rm_strategic_scenarios_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_strategic_scenarios_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_strategic_scenarios_create |
EBIOS_RMTOOL |
api_ebios_rm_strategic_scenarios_create |
ciso_assistant_api_ebios_rm_strategic_scenarios_destroy |
EBIOS_RMTOOL |
api_ebios_rm_strategic_scenarios_destroy |
ciso_assistant_api_ebios_rm_strategic_scenarios_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_strategic_scenarios_object_retrieve |
EBIOS_RMTOOL |
api_ebios_rm_strategic_scenarios_object_retrieve |
ciso_assistant_api_ebios_rm_strategic_scenarios_partial_update |
EBIOS_RMTOOL |
api_ebios_rm_strategic_scenarios_partial_update |
ciso_assistant_api_ebios_rm_strategic_scenarios_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_strategic_scenarios_update |
EBIOS_RMTOOL |
api_ebios_rm_strategic_scenarios_update |
ciso_assistant_api_ebios_rm_studies_batch_action_create |
EBIOS_RMTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_ebios_rm_studies_cascade_info_retrieve |
EBIOS_RMTOOL |
Cascade preview: |
ciso_assistant_api_ebios_rm_studies_create |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_destroy |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_ecosystem_chart_data_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_ecosystem_circular_chart_data_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_export_xlsx_retrieve |
EBIOS_RMTOOL |
Export EBIOS RM study data to Excel with multiple sheets. |
ciso_assistant_api_ebios_rm_studies_gravity_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_likelihood_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_list |
EBIOS_RMTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_ebios_rm_studies_object_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_partial_update |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_quotation_method_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_report_data_retrieve |
EBIOS_RMTOOL |
Endpoint to prepare comprehensive report data for an EBIOS RM study. |
ciso_assistant_api_ebios_rm_studies_retrieve |
EBIOS_RMTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_ebios_rm_studies_risk_matrix_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_status_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_update |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_visual_analysis_retrieve |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_ebios_rm_studies_workshop_step_partial_update |
EBIOS_RMTOOL |
API endpoint that allows ebios rm studies to be viewed or edited. |
ciso_assistant_api_entities_batch_action_create |
THIRD_PARTYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_entities_batch_create_create |
THIRD_PARTYTOOL |
Batch create multiple entities from a text list. |
ciso_assistant_api_entities_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_entities_country_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_create |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_currency_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_destroy |
THIRD_PARTYTOOL |
Convert Django's ProtectedError into a 409 Conflict with the list of |
ciso_assistant_api_entities_dora_entity_hierarchy_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_dora_entity_type_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_dora_provider_person_type_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_dora_roi_lint_retrieve |
THIRD_PARTYTOOL |
Validate DORA ROI requirements and return linting results. |
ciso_assistant_api_entities_export_csv_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_export_ecosystem_retrieve |
THIRD_PARTYTOOL |
Export the TPRM ecosystem as a multi-sheet Excel file with three sheets |
ciso_assistant_api_entities_export_xlsx_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_generate_dora_roi_retrieve |
THIRD_PARTYTOOL |
Generate DORA Register of Information (ROI) as a zip file containing CSV data. |
ciso_assistant_api_entities_graph_retrieve |
THIRD_PARTYTOOL |
Generate graph data for entities, showing: |
ciso_assistant_api_entities_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_entities_object_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_partial_update |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entities_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_entities_update |
THIRD_PARTYTOOL |
API endpoint that allows entities to be viewed or edited. |
ciso_assistant_api_entity_assessments_batch_action_create |
THIRD_PARTYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_entity_assessments_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_entity_assessments_conclusion_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_create |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_destroy |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_entity_assessments_metrics_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_object_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_partial_update |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_entity_assessments_status_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_entity_assessments_update |
THIRD_PARTYTOOL |
API endpoint that allows entity assessments to be viewed or edited. |
ciso_assistant_api_evidence_revisions_attachment_retrieve |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_batch_action_create |
EVIDENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_evidence_revisions_cascade_info_retrieve |
EVIDENCETOOL |
Cascade preview: |
ciso_assistant_api_evidence_revisions_create |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_delete_attachment_create |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_destroy |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_list |
EVIDENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_evidence_revisions_object_retrieve |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_partial_update |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_retrieve |
EVIDENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_evidence_revisions_update |
EVIDENCETOOL |
API endpoint that allows evidence revisions to be viewed or edited. |
ciso_assistant_api_evidence_revisions_upload_create |
EVIDENCETOOL |
api_evidence_revisions_upload_create |
ciso_assistant_api_evidences_attachment_retrieve |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_batch_action_create |
EVIDENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_evidences_batch_upload_create |
EVIDENCETOOL |
Bulk-upload evidences from a multipart payload. |
ciso_assistant_api_evidences_cascade_info_retrieve |
EVIDENCETOOL |
Cascade preview: |
ciso_assistant_api_evidences_create |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_destroy |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_list |
EVIDENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_evidences_object_retrieve |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_owner_retrieve |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_partial_update |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_retrieve |
EVIDENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_evidences_status_retrieve |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_update |
EVIDENCETOOL |
API endpoint that allows evidences to be viewed or edited. |
ciso_assistant_api_evidences_upload_create |
EVIDENCETOOL |
api_evidences_upload_create |
ciso_assistant_api_filtering_labels_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_filtering_labels_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_filtering_labels_create |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows labels to be viewed or edited. |
ciso_assistant_api_filtering_labels_destroy |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows labels to be viewed or edited. |
ciso_assistant_api_filtering_labels_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_filtering_labels_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows labels to be viewed or edited. |
ciso_assistant_api_filtering_labels_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows labels to be viewed or edited. |
ciso_assistant_api_filtering_labels_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_filtering_labels_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows labels to be viewed or edited. |
ciso_assistant_api_findings_assessments_batch_action_create |
SECURITY_FINDINGSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_findings_assessments_cascade_info_retrieve |
SECURITY_FINDINGSTOOL |
Cascade preview: |
ciso_assistant_api_findings_assessments_category_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_category_retrieve |
ciso_assistant_api_findings_assessments_create |
SECURITY_FINDINGSTOOL |
api_findings_assessments_create |
ciso_assistant_api_findings_assessments_destroy |
SECURITY_FINDINGSTOOL |
api_findings_assessments_destroy |
ciso_assistant_api_findings_assessments_list |
SECURITY_FINDINGSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_findings_assessments_md_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_md_retrieve |
ciso_assistant_api_findings_assessments_metrics_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_metrics_retrieve |
ciso_assistant_api_findings_assessments_object_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_object_retrieve |
ciso_assistant_api_findings_assessments_partial_update |
SECURITY_FINDINGSTOOL |
api_findings_assessments_partial_update |
ciso_assistant_api_findings_assessments_pdf_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_pdf_retrieve |
ciso_assistant_api_findings_assessments_retrieve |
SECURITY_FINDINGSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_findings_assessments_status_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_status_retrieve |
ciso_assistant_api_findings_assessments_sunburst_data_retrieve |
SECURITY_FINDINGSTOOL |
Returns FindingsAssessment data structured for sunburst visualization: |
ciso_assistant_api_findings_assessments_update |
SECURITY_FINDINGSTOOL |
api_findings_assessments_update |
ciso_assistant_api_findings_assessments_xlsx_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_assessments_xlsx_retrieve |
ciso_assistant_api_findings_batch_action_create |
SECURITY_FINDINGSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_findings_cascade_info_retrieve |
SECURITY_FINDINGSTOOL |
Cascade preview: |
ciso_assistant_api_findings_create |
SECURITY_FINDINGSTOOL |
api_findings_create |
ciso_assistant_api_findings_destroy |
SECURITY_FINDINGSTOOL |
api_findings_destroy |
ciso_assistant_api_findings_list |
SECURITY_FINDINGSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_findings_object_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_object_retrieve |
ciso_assistant_api_findings_owner_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_owner_retrieve |
ciso_assistant_api_findings_partial_update |
SECURITY_FINDINGSTOOL |
api_findings_partial_update |
ciso_assistant_api_findings_priority_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_priority_retrieve |
ciso_assistant_api_findings_retrieve |
SECURITY_FINDINGSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_findings_sankey_data_retrieve |
SECURITY_FINDINGSTOOL |
Returns findings data structured for Sankey diagram: |
ciso_assistant_api_findings_severity_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_severity_retrieve |
ciso_assistant_api_findings_status_retrieve |
SECURITY_FINDINGSTOOL |
api_findings_status_retrieve |
ciso_assistant_api_findings_update |
SECURITY_FINDINGSTOOL |
api_findings_update |
ciso_assistant_api_folders_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_folders_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_folders_create |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_destroy |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_export_retrieve |
GOVERNANCETOOL |
Export the domain as a zip file containing a JSON dump of all objects and their relationships |
ciso_assistant_api_folders_get_accessible_objects_retrieve |
GOVERNANCETOOL |
Return the list of folders, perimeters, frameworks and risk matrices |
ciso_assistant_api_folders_ids_retrieve |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_import_create |
GOVERNANCETOOL |
Handle file upload and initiate import process. |
ciso_assistant_api_folders_import_dummy_create |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_folders_my_assignments_retrieve |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_object_retrieve |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_org_tree_retrieve |
GOVERNANCETOOL |
Return the tree of domains and perimeters. |
ciso_assistant_api_folders_partial_update |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_quality_check_retrieve |
GOVERNANCETOOL |
Returns the quality check of assessments grouped by folder. |
ciso_assistant_api_folders_quality_check_retrieve_2 |
GOVERNANCETOOL |
Returns the quality check of assessments for a specific folder. |
ciso_assistant_api_folders_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_folders_update |
GOVERNANCETOOL |
API endpoint that allows folders to be viewed or edited. |
ciso_assistant_api_folders_users_list |
GOVERNANCETOOL |
api_folders_users_list |
ciso_assistant_api_frameworks_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_frameworks_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_frameworks_create |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_destroy |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_discard_draft_create |
FRAMEWORKS_LIBRARIESTOOL |
Discard editing_draft without affecting relational data. |
ciso_assistant_api_frameworks_duplicate_create |
FRAMEWORKS_LIBRARIESTOOL |
Deep-clone a framework with all requirement nodes, questions, and choices. |
ciso_assistant_api_frameworks_excel_template_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_export_yaml_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Export a framework as a library-compatible YAML file. |
ciso_assistant_api_frameworks_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_frameworks_mapping_stats_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_mappings_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_names_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_provider_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_publish_draft_create |
FRAMEWORKS_LIBRARIESTOOL |
Publish editing_draft → relational DB, snapshot history, bump version. |
ciso_assistant_api_frameworks_publish_draft_preview_create |
FRAMEWORKS_LIBRARIESTOOL |
Preview the impact of publishing the current draft. |
ciso_assistant_api_frameworks_report_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cross-assessment report for one framework. |
ciso_assistant_api_frameworks_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_frameworks_save_draft_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
Update editing_draft with the current WIP from the frontend. |
ciso_assistant_api_frameworks_serve_image_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Serve an image attachment belonging to this framework. |
ciso_assistant_api_frameworks_start_editing_create |
FRAMEWORKS_LIBRARIESTOOL |
Serialize the framework tree into editing_draft to begin editing. |
ciso_assistant_api_frameworks_tree_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_frameworks_upload_image_create |
FRAMEWORKS_LIBRARIESTOOL |
Upload an image to this framework (for splash screen markdown in draft mode). |
ciso_assistant_api_frameworks_used_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows frameworks to be viewed or edited. |
ciso_assistant_api_get_audits_metrics_retrieve |
ANALYTICS_METROLOGYTOOL |
API endpoint that returns the expensive audit metrics (progress avg + audits stats). |
ciso_assistant_api_get_combined_assessments_status_retrieve |
ANALYTICS_METROLOGYTOOL |
API endpoint that returns combined assessment counts per status |
ciso_assistant_api_get_counters_retrieve |
ANALYTICS_METROLOGYTOOL |
API endpoint that returns the counters |
ciso_assistant_api_get_governance_calendar_data_retrieve |
ANALYTICS_METROLOGYTOOL |
API endpoint that returns governance activity calendar data |
ciso_assistant_api_get_metrics_retrieve |
ANALYTICS_METROLOGYTOOL |
API endpoint that returns the counters |
ciso_assistant_api_health_retrieve |
INTEGRATIONSTOOL |
api_health_retrieve |
ciso_assistant_api_iam_auth_tokens_create |
AUTH_USERSTOOL |
api_iam_auth_tokens_create |
ciso_assistant_api_iam_auth_tokens_destroy |
AUTH_USERSTOOL |
api_iam_auth_tokens_destroy |
ciso_assistant_api_iam_auth_tokens_retrieve |
AUTH_USERSTOOL |
Get all personal access tokens for the user. |
ciso_assistant_api_iam_change_password_create |
AUTH_USERSTOOL |
An endpoint for changing password. |
ciso_assistant_api_iam_current_user_retrieve |
AUTH_USERSTOOL |
api_iam_current_user_retrieve |
ciso_assistant_api_iam_login_create |
AUTH_USERSTOOL |
api_iam_login_create |
ciso_assistant_api_iam_logout_create |
AUTH_USERSTOOL |
api_iam_logout_create |
ciso_assistant_api_iam_logoutall_create |
AUTH_USERSTOOL |
Log the user out of all sessions |
ciso_assistant_api_iam_password_reset_confirm_create |
AUTH_USERSTOOL |
API Endpoint for reset password confirm |
ciso_assistant_api_iam_password_reset_create |
AUTH_USERSTOOL |
api_iam_password_reset_create |
ciso_assistant_api_iam_revoke_sessions_create |
AUTH_USERSTOOL |
An endpoint for revoking all other user sessions (except the current one). |
ciso_assistant_api_iam_session_token_create |
AUTH_USERSTOOL |
API Endpoint for getting the session token from an access token |
ciso_assistant_api_iam_set_password_create |
AUTH_USERSTOOL |
An endpoint for setting a password as an administrator. |
ciso_assistant_api_incidents_batch_action_create |
INCIDENTSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_incidents_cascade_info_retrieve |
INCIDENTSTOOL |
Cascade preview: |
ciso_assistant_api_incidents_create |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_destroy |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_detection_breakdown_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_detection_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_export_csv_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_export_xlsx_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_list |
INCIDENTSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_incidents_md_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_monthly_metrics_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_object_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_partial_update |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_pdf_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_qualifications_breakdown_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_retrieve |
INCIDENTSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_incidents_severity_breakdown_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_severity_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_status_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_summary_stats_retrieve |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_incidents_update |
INCIDENTSTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_integrations_configs_batch_action_create |
INTEGRATIONSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_integrations_configs_cascade_info_retrieve |
INTEGRATIONSTOOL |
Cascade preview: |
ciso_assistant_api_integrations_configs_create |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_configs_destroy |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_configs_list |
INTEGRATIONSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_integrations_configs_object_retrieve |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_configs_partial_update |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_configs_remote_objects_retrieve |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_configs_retrieve |
INTEGRATIONSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_integrations_configs_rpc_create |
INTEGRATIONSTOOL |
Generic endpoint for interactive integration commands. |
ciso_assistant_api_integrations_configs_test_connection_create |
INTEGRATIONSTOOL |
Custom action to test the connection for a saved integration configuration. |
ciso_assistant_api_integrations_configs_update |
INTEGRATIONSTOOL |
API endpoint for creating, viewing, updating, and deleting Integration Configurations. |
ciso_assistant_api_integrations_providers_list |
INTEGRATIONSTOOL |
An API endpoint to list all available (and active) Integration Providers. |
ciso_assistant_api_integrations_sync_mappings_destroy |
INTEGRATIONSTOOL |
An API endpoint to delete a SyncMapping. |
ciso_assistant_api_integrations_test_connection_create |
INTEGRATIONSTOOL |
An endpoint to test connection credentials without saving them. |
ciso_assistant_api_journey_steps_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_journey_steps_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_journey_steps_create |
GOVERNANCETOOL |
api_journey_steps_create |
ciso_assistant_api_journey_steps_destroy |
GOVERNANCETOOL |
api_journey_steps_destroy |
ciso_assistant_api_journey_steps_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_journey_steps_object_retrieve |
GOVERNANCETOOL |
api_journey_steps_object_retrieve |
ciso_assistant_api_journey_steps_partial_update |
GOVERNANCETOOL |
api_journey_steps_partial_update |
ciso_assistant_api_journey_steps_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_journey_steps_update |
GOVERNANCETOOL |
api_journey_steps_update |
ciso_assistant_api_journeys_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_journeys_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_journeys_create |
GOVERNANCETOOL |
api_journeys_create |
ciso_assistant_api_journeys_dashboard_retrieve |
GOVERNANCETOOL |
api_journeys_dashboard_retrieve |
ciso_assistant_api_journeys_destroy |
GOVERNANCETOOL |
api_journeys_destroy |
ciso_assistant_api_journeys_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_journeys_object_retrieve |
GOVERNANCETOOL |
api_journeys_object_retrieve |
ciso_assistant_api_journeys_partial_update |
GOVERNANCETOOL |
api_journeys_partial_update |
ciso_assistant_api_journeys_rename_create |
GOVERNANCETOOL |
api_journeys_rename_create |
ciso_assistant_api_journeys_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_journeys_update |
GOVERNANCETOOL |
api_journeys_update |
ciso_assistant_api_journeys_upgrade_create |
GOVERNANCETOOL |
api_journeys_upgrade_create |
ciso_assistant_api_library_filtering_labels_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_library_filtering_labels_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_library_filtering_labels_create |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows library labels to be viewed or edited. |
ciso_assistant_api_library_filtering_labels_destroy |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows library labels to be viewed or edited. |
ciso_assistant_api_library_filtering_labels_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_library_filtering_labels_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows library labels to be viewed or edited. |
ciso_assistant_api_library_filtering_labels_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows library labels to be viewed or edited. |
ciso_assistant_api_library_filtering_labels_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_library_filtering_labels_update |
FRAMEWORKS_LIBRARIESTOOL |
API endpoint that allows library labels to be viewed or edited. |
ciso_assistant_api_loaded_libraries_available_updates_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_available_updates_retrieve |
ciso_assistant_api_loaded_libraries_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_loaded_libraries_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_loaded_libraries_content_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_content_retrieve |
ciso_assistant_api_loaded_libraries_create |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_create |
ciso_assistant_api_loaded_libraries_destroy |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_destroy |
ciso_assistant_api_loaded_libraries_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_loaded_libraries_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_object_retrieve |
ciso_assistant_api_loaded_libraries_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_partial_update |
ciso_assistant_api_loaded_libraries_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_loaded_libraries_tree_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_tree_retrieve |
ciso_assistant_api_loaded_libraries_update |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_update |
ciso_assistant_api_loaded_libraries_update_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_loaded_libraries_update_retrieve |
ciso_assistant_api_managed_documents_batch_action_create |
EVIDENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_managed_documents_cascade_info_retrieve |
EVIDENCETOOL |
Cascade preview: |
ciso_assistant_api_managed_documents_create |
EVIDENCETOOL |
API endpoint that allows managed documents to be viewed or edited. |
ciso_assistant_api_managed_documents_create_new_draft_create |
EVIDENCETOOL |
Create a new draft revision cloned from the current revision. |
ciso_assistant_api_managed_documents_destroy |
EVIDENCETOOL |
API endpoint that allows managed documents to be viewed or edited. |
ciso_assistant_api_managed_documents_list |
EVIDENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_managed_documents_object_retrieve |
EVIDENCETOOL |
API endpoint that allows managed documents to be viewed or edited. |
ciso_assistant_api_managed_documents_partial_update |
EVIDENCETOOL |
API endpoint that allows managed documents to be viewed or edited. |
ciso_assistant_api_managed_documents_retrieve |
EVIDENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_managed_documents_templates_retrieve |
EVIDENCETOOL |
List available document templates. Accepts optional ?lang= query parameter. |
ciso_assistant_api_managed_documents_update |
EVIDENCETOOL |
API endpoint that allows managed documents to be viewed or edited. |
ciso_assistant_api_managed_documents_upload_image_create |
EVIDENCETOOL |
Upload an image file and attach it to this document. |
ciso_assistant_api_mapping_libraries_list |
COMPLIANCETOOL |
api_mapping_libraries_list |
ciso_assistant_api_metrology_builtin_metric_samples_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_builtin_metric_samples_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_builtin_metric_samples_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_create |
ciso_assistant_api_metrology_builtin_metric_samples_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_destroy |
ciso_assistant_api_metrology_builtin_metric_samples_for_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_for_object_retrieve |
ciso_assistant_api_metrology_builtin_metric_samples_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_builtin_metric_samples_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_object_retrieve |
ciso_assistant_api_metrology_builtin_metric_samples_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_partial_update |
ciso_assistant_api_metrology_builtin_metric_samples_refresh_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_refresh_create |
ciso_assistant_api_metrology_builtin_metric_samples_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_builtin_metric_samples_supported_models_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_supported_models_retrieve |
ciso_assistant_api_metrology_builtin_metric_samples_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_builtin_metric_samples_update |
ciso_assistant_api_metrology_custom_metric_samples_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_custom_metric_samples_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_custom_metric_samples_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_custom_metric_samples_create |
ciso_assistant_api_metrology_custom_metric_samples_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_custom_metric_samples_destroy |
ciso_assistant_api_metrology_custom_metric_samples_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_custom_metric_samples_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_custom_metric_samples_object_retrieve |
ciso_assistant_api_metrology_custom_metric_samples_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_custom_metric_samples_partial_update |
ciso_assistant_api_metrology_custom_metric_samples_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_custom_metric_samples_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_custom_metric_samples_update |
ciso_assistant_api_metrology_dashboard_widgets_aggregation_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_aggregation_retrieve |
ciso_assistant_api_metrology_dashboard_widgets_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_dashboard_widgets_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_dashboard_widgets_chart_type_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_chart_type_retrieve |
ciso_assistant_api_metrology_dashboard_widgets_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_create |
ciso_assistant_api_metrology_dashboard_widgets_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_destroy |
ciso_assistant_api_metrology_dashboard_widgets_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_dashboard_widgets_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_object_retrieve |
ciso_assistant_api_metrology_dashboard_widgets_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_partial_update |
ciso_assistant_api_metrology_dashboard_widgets_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_dashboard_widgets_time_range_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_time_range_retrieve |
ciso_assistant_api_metrology_dashboard_widgets_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboard_widgets_update |
ciso_assistant_api_metrology_dashboards_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_dashboards_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_dashboards_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboards_create |
ciso_assistant_api_metrology_dashboards_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboards_destroy |
ciso_assistant_api_metrology_dashboards_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_dashboards_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboards_object_retrieve |
ciso_assistant_api_metrology_dashboards_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboards_partial_update |
ciso_assistant_api_metrology_dashboards_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_dashboards_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_dashboards_update |
ciso_assistant_api_metrology_metric_definitions_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_metric_definitions_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_metric_definitions_category_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_category_retrieve |
ciso_assistant_api_metrology_metric_definitions_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_create |
ciso_assistant_api_metrology_metric_definitions_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_destroy |
ciso_assistant_api_metrology_metric_definitions_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_metric_definitions_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_object_retrieve |
ciso_assistant_api_metrology_metric_definitions_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_partial_update |
ciso_assistant_api_metrology_metric_definitions_provider_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_provider_retrieve |
ciso_assistant_api_metrology_metric_definitions_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_metric_definitions_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_definitions_update |
ciso_assistant_api_metrology_metric_instances_batch_action_create |
ANALYTICS_METROLOGYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_metrology_metric_instances_cascade_info_retrieve |
ANALYTICS_METROLOGYTOOL |
Cascade preview: |
ciso_assistant_api_metrology_metric_instances_collection_frequency_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_collection_frequency_retrieve |
ciso_assistant_api_metrology_metric_instances_create |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_create |
ciso_assistant_api_metrology_metric_instances_destroy |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_destroy |
ciso_assistant_api_metrology_metric_instances_list |
ANALYTICS_METROLOGYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_metrology_metric_instances_object_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_object_retrieve |
ciso_assistant_api_metrology_metric_instances_partial_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_partial_update |
ciso_assistant_api_metrology_metric_instances_retrieve |
ANALYTICS_METROLOGYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_metrology_metric_instances_status_retrieve |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_status_retrieve |
ciso_assistant_api_metrology_metric_instances_update |
ANALYTICS_METROLOGYTOOL |
api_metrology_metric_instances_update |
ciso_assistant_api_organisation_issues_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_organisation_issues_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_organisation_issues_category_retrieve |
GOVERNANCETOOL |
api_organisation_issues_category_retrieve |
ciso_assistant_api_organisation_issues_create |
GOVERNANCETOOL |
api_organisation_issues_create |
ciso_assistant_api_organisation_issues_destroy |
GOVERNANCETOOL |
api_organisation_issues_destroy |
ciso_assistant_api_organisation_issues_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_organisation_issues_object_retrieve |
GOVERNANCETOOL |
api_organisation_issues_object_retrieve |
ciso_assistant_api_organisation_issues_origin_retrieve |
GOVERNANCETOOL |
api_organisation_issues_origin_retrieve |
ciso_assistant_api_organisation_issues_partial_update |
GOVERNANCETOOL |
api_organisation_issues_partial_update |
ciso_assistant_api_organisation_issues_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_organisation_issues_status_retrieve |
GOVERNANCETOOL |
api_organisation_issues_status_retrieve |
ciso_assistant_api_organisation_issues_update |
GOVERNANCETOOL |
api_organisation_issues_update |
ciso_assistant_api_organisation_objectives_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_organisation_objectives_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_organisation_objectives_create |
GOVERNANCETOOL |
api_organisation_objectives_create |
ciso_assistant_api_organisation_objectives_destroy |
GOVERNANCETOOL |
api_organisation_objectives_destroy |
ciso_assistant_api_organisation_objectives_duplicate_create |
GOVERNANCETOOL |
api_organisation_objectives_duplicate_create |
ciso_assistant_api_organisation_objectives_health_retrieve |
GOVERNANCETOOL |
api_organisation_objectives_health_retrieve |
ciso_assistant_api_organisation_objectives_is_active_retrieve |
GOVERNANCETOOL |
api_organisation_objectives_is_active_retrieve |
ciso_assistant_api_organisation_objectives_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_organisation_objectives_object_retrieve |
GOVERNANCETOOL |
api_organisation_objectives_object_retrieve |
ciso_assistant_api_organisation_objectives_partial_update |
GOVERNANCETOOL |
api_organisation_objectives_partial_update |
ciso_assistant_api_organisation_objectives_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_organisation_objectives_status_retrieve |
GOVERNANCETOOL |
api_organisation_objectives_status_retrieve |
ciso_assistant_api_organisation_objectives_update |
GOVERNANCETOOL |
api_organisation_objectives_update |
ciso_assistant_api_perimeters_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_perimeters_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_perimeters_create |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_destroy |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_ids_retrieve |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_lc_status_retrieve |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_perimeters_names_retrieve |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_object_retrieve |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_partial_update |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_perimeters_quality_check_retrieve |
GOVERNANCETOOL |
Returns the quality check of the perimeters |
ciso_assistant_api_perimeters_quality_check_retrieve_2 |
GOVERNANCETOOL |
Returns the quality check of the perimeter |
ciso_assistant_api_perimeters_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_perimeters_update |
GOVERNANCETOOL |
API endpoint that allows perimeters to be viewed or edited. |
ciso_assistant_api_pmbok_accreditations_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_accreditations_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_accreditations_category_retrieve |
RESILIENCETOOL |
api_pmbok_accreditations_category_retrieve |
ciso_assistant_api_pmbok_accreditations_create |
RESILIENCETOOL |
api_pmbok_accreditations_create |
ciso_assistant_api_pmbok_accreditations_destroy |
RESILIENCETOOL |
api_pmbok_accreditations_destroy |
ciso_assistant_api_pmbok_accreditations_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_accreditations_object_retrieve |
RESILIENCETOOL |
api_pmbok_accreditations_object_retrieve |
ciso_assistant_api_pmbok_accreditations_partial_update |
RESILIENCETOOL |
api_pmbok_accreditations_partial_update |
ciso_assistant_api_pmbok_accreditations_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_accreditations_status_retrieve |
RESILIENCETOOL |
api_pmbok_accreditations_status_retrieve |
ciso_assistant_api_pmbok_accreditations_update |
RESILIENCETOOL |
api_pmbok_accreditations_update |
ciso_assistant_api_pmbok_generic_collections_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_generic_collections_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_generic_collections_create |
RESILIENCETOOL |
api_pmbok_generic_collections_create |
ciso_assistant_api_pmbok_generic_collections_destroy |
RESILIENCETOOL |
api_pmbok_generic_collections_destroy |
ciso_assistant_api_pmbok_generic_collections_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_generic_collections_object_retrieve |
RESILIENCETOOL |
api_pmbok_generic_collections_object_retrieve |
ciso_assistant_api_pmbok_generic_collections_partial_update |
RESILIENCETOOL |
api_pmbok_generic_collections_partial_update |
ciso_assistant_api_pmbok_generic_collections_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_generic_collections_status_retrieve |
RESILIENCETOOL |
api_pmbok_generic_collections_status_retrieve |
ciso_assistant_api_pmbok_generic_collections_update |
RESILIENCETOOL |
api_pmbok_generic_collections_update |
ciso_assistant_api_pmbok_projects_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_projects_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_projects_create |
RESILIENCETOOL |
api_pmbok_projects_create |
ciso_assistant_api_pmbok_projects_currencies_retrieve |
RESILIENCETOOL |
api_pmbok_projects_currencies_retrieve |
ciso_assistant_api_pmbok_projects_destroy |
RESILIENCETOOL |
api_pmbok_projects_destroy |
ciso_assistant_api_pmbok_projects_kind_retrieve |
RESILIENCETOOL |
api_pmbok_projects_kind_retrieve |
ciso_assistant_api_pmbok_projects_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_projects_object_retrieve |
RESILIENCETOOL |
api_pmbok_projects_object_retrieve |
ciso_assistant_api_pmbok_projects_partial_update |
RESILIENCETOOL |
api_pmbok_projects_partial_update |
ciso_assistant_api_pmbok_projects_priority_retrieve |
RESILIENCETOOL |
api_pmbok_projects_priority_retrieve |
ciso_assistant_api_pmbok_projects_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_projects_update |
RESILIENCETOOL |
api_pmbok_projects_update |
ciso_assistant_api_pmbok_responsibility_assignments_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_responsibility_assignments_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_responsibility_assignments_object_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_assignments_object_retrieve |
ciso_assistant_api_pmbok_responsibility_assignments_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_responsibility_matrices_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_responsibility_matrices_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_responsibility_matrices_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_create |
ciso_assistant_api_pmbok_responsibility_matrices_cycle_cell_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_cycle_cell_create |
ciso_assistant_api_pmbok_responsibility_matrices_destroy |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_destroy |
ciso_assistant_api_pmbok_responsibility_matrices_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_responsibility_matrices_object_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_object_retrieve |
ciso_assistant_api_pmbok_responsibility_matrices_partial_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_partial_update |
ciso_assistant_api_pmbok_responsibility_matrices_preset_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_preset_retrieve |
ciso_assistant_api_pmbok_responsibility_matrices_reorder_activities_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_reorder_activities_create |
ciso_assistant_api_pmbok_responsibility_matrices_reorder_actors_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_reorder_actors_create |
ciso_assistant_api_pmbok_responsibility_matrices_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_responsibility_matrices_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrices_update |
ciso_assistant_api_pmbok_responsibility_matrix_activities_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_responsibility_matrix_activities_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_responsibility_matrix_activities_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_activities_create |
ciso_assistant_api_pmbok_responsibility_matrix_activities_destroy |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_activities_destroy |
ciso_assistant_api_pmbok_responsibility_matrix_activities_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_responsibility_matrix_activities_object_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_activities_object_retrieve |
ciso_assistant_api_pmbok_responsibility_matrix_activities_partial_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_activities_partial_update |
ciso_assistant_api_pmbok_responsibility_matrix_activities_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_responsibility_matrix_activities_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_activities_update |
ciso_assistant_api_pmbok_responsibility_matrix_actors_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_pmbok_responsibility_matrix_actors_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_responsibility_matrix_actors_create |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_actors_create |
ciso_assistant_api_pmbok_responsibility_matrix_actors_destroy |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_actors_destroy |
ciso_assistant_api_pmbok_responsibility_matrix_actors_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_responsibility_matrix_actors_object_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_actors_object_retrieve |
ciso_assistant_api_pmbok_responsibility_matrix_actors_partial_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_actors_partial_update |
ciso_assistant_api_pmbok_responsibility_matrix_actors_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_responsibility_matrix_actors_update |
RESILIENCETOOL |
api_pmbok_responsibility_matrix_actors_update |
ciso_assistant_api_pmbok_responsibility_roles_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_pmbok_responsibility_roles_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_pmbok_responsibility_roles_object_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_roles_object_retrieve |
ciso_assistant_api_pmbok_responsibility_roles_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_pmbok_responsibility_roles_taxonomy_retrieve |
RESILIENCETOOL |
api_pmbok_responsibility_roles_taxonomy_retrieve |
ciso_assistant_api_policies_analytics_retrieve |
COMPLIANCETOOL |
Aggregated analytics over the filtered applied-controls queryset. |
ciso_assistant_api_policies_autocomplete_retrieve |
COMPLIANCETOOL |
Minimal endpoint for autocomplete selects. |
ciso_assistant_api_policies_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_policies_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_policies_category_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_control_impact_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_csf_function_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_destroy |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_duplicate_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_effort_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_export_csv_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_export_xlsx_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_get_controls_info_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_get_gantt_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_get_timeline_info_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_ids_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_impact_effort_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_impact_graph_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_linked_models_retrieve |
COMPLIANCETOOL |
Return available model types that can be linked to applied controls |
ciso_assistant_api_policies_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_policies_merge_create |
COMPLIANCETOOL |
Merge N source applied controls into 1 target. See |
ciso_assistant_api_policies_mss_xlsx_retrieve |
COMPLIANCETOOL |
Export filtered applied controls in ANSSI MonServiceSécurisé format |
ciso_assistant_api_policies_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_owner_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_partial_update |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_per_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_priority_chart_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_priority_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_policies_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_sunburst_data_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_sync_to_reference_control_create |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_to_review_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_todo_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_updatables_retrieve |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_policies_update |
COMPLIANCETOOL |
API endpoint that allows applied controls to be viewed or edited. |
ciso_assistant_api_presets_apply_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_apply_create |
ciso_assistant_api_presets_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_presets_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_presets_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_create |
ciso_assistant_api_presets_create_blank_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_create_blank_create |
ciso_assistant_api_presets_destroy |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_destroy |
ciso_assistant_api_presets_discard_draft_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_discard_draft_create |
ciso_assistant_api_presets_duplicate_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_duplicate_create |
ciso_assistant_api_presets_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_presets_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_object_retrieve |
ciso_assistant_api_presets_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_partial_update |
ciso_assistant_api_presets_publish_draft_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_publish_draft_create |
ciso_assistant_api_presets_publish_draft_preview_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_publish_draft_preview_create |
ciso_assistant_api_presets_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_presets_save_draft_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_save_draft_partial_update |
ciso_assistant_api_presets_start_editing_create |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_start_editing_create |
ciso_assistant_api_presets_update |
FRAMEWORKS_LIBRARIESTOOL |
api_presets_update |
ciso_assistant_api_privacy_data_breaches_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_data_breaches_breach_type_retrieve |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_data_breaches_create |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_destroy |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_data_breaches_object_retrieve |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_partial_update |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_data_breaches_risk_level_retrieve |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_status_retrieve |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_breaches_update |
PRIVACYTOOL |
API endpoint that allows data breaches to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_data_contractors_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_data_contractors_country_retrieve |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_create |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_destroy |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_data_contractors_object_retrieve |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_partial_update |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_relationship_type_retrieve |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_contractors_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_data_contractors_update |
PRIVACYTOOL |
API endpoint that allows data contractors to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_data_recipients_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_data_recipients_category_retrieve |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_create |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_destroy |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_data_recipients_object_retrieve |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_partial_update |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_recipients_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_data_recipients_update |
PRIVACYTOOL |
API endpoint that allows data recipients to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_data_subjects_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_data_subjects_category_retrieve |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_create |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_destroy |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_data_subjects_object_retrieve |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_partial_update |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_subjects_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_data_subjects_update |
PRIVACYTOOL |
API endpoint that allows data subjects to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_data_transfers_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_data_transfers_country_retrieve |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_create |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_destroy |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_data_transfers_object_retrieve |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_partial_update |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_data_transfers_transfer_mechanism_retrieve |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_data_transfers_update |
PRIVACYTOOL |
API endpoint that allows data transfers to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_personal_data_batch_create_create |
PRIVACYTOOL |
Batch create multiple personal data entries for a processing. |
ciso_assistant_api_privacy_personal_data_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_personal_data_category_retrieve |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_create |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_deletion_policy_retrieve |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_destroy |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_is_sensitive_retrieve |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_personal_data_object_retrieve |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_partial_update |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_personal_data_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_personal_data_update |
PRIVACYTOOL |
API endpoint that allows personal data to be viewed or edited. |
ciso_assistant_api_privacy_processing_natures_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_processing_natures_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_processing_natures_create |
PRIVACYTOOL |
api_privacy_processing_natures_create |
ciso_assistant_api_privacy_processing_natures_destroy |
PRIVACYTOOL |
api_privacy_processing_natures_destroy |
ciso_assistant_api_privacy_processing_natures_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_processing_natures_object_retrieve |
PRIVACYTOOL |
api_privacy_processing_natures_object_retrieve |
ciso_assistant_api_privacy_processing_natures_partial_update |
PRIVACYTOOL |
api_privacy_processing_natures_partial_update |
ciso_assistant_api_privacy_processing_natures_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_processing_natures_update |
PRIVACYTOOL |
api_privacy_processing_natures_update |
ciso_assistant_api_privacy_processings_agg_metrics_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_assigned_to_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_processings_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_processings_create |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_destroy |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_export_csv_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_export_xlsx_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_processings_metrics_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_object_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_partial_update |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_processings_status_retrieve |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_processings_update |
PRIVACYTOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_privacy_purposes_article_9_condition_retrieve |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_purposes_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_purposes_create |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_destroy |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_legal_basis_retrieve |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_purposes_object_retrieve |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_partial_update |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_purposes_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_purposes_update |
PRIVACYTOOL |
API endpoint that allows purposes to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_batch_action_create |
PRIVACYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_privacy_right_requests_cascade_info_retrieve |
PRIVACYTOOL |
Cascade preview: |
ciso_assistant_api_privacy_right_requests_create |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_destroy |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_list |
PRIVACYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_privacy_right_requests_object_retrieve |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_owner_retrieve |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_partial_update |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_request_type_retrieve |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_retrieve |
PRIVACYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_privacy_right_requests_status_retrieve |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_privacy_right_requests_update |
PRIVACYTOOL |
API endpoint that allows right requests to be viewed or edited. |
ciso_assistant_api_question_choices_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_question_choices_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_question_choices_create |
TASKS_TIMELINETOOL |
API endpoint for QuestionChoice CRUD. |
ciso_assistant_api_question_choices_destroy |
TASKS_TIMELINETOOL |
API endpoint for QuestionChoice CRUD. |
ciso_assistant_api_question_choices_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_question_choices_object_retrieve |
TASKS_TIMELINETOOL |
API endpoint for QuestionChoice CRUD. |
ciso_assistant_api_question_choices_partial_update |
TASKS_TIMELINETOOL |
API endpoint for QuestionChoice CRUD. |
ciso_assistant_api_question_choices_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_question_choices_update |
TASKS_TIMELINETOOL |
API endpoint for QuestionChoice CRUD. |
ciso_assistant_api_questions_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_questions_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_questions_create |
TASKS_TIMELINETOOL |
API endpoint for Question CRUD. |
ciso_assistant_api_questions_destroy |
TASKS_TIMELINETOOL |
API endpoint for Question CRUD. |
ciso_assistant_api_questions_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_questions_object_retrieve |
TASKS_TIMELINETOOL |
API endpoint for Question CRUD. |
ciso_assistant_api_questions_partial_update |
TASKS_TIMELINETOOL |
API endpoint for Question CRUD. |
ciso_assistant_api_questions_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_questions_update |
TASKS_TIMELINETOOL |
API endpoint for Question CRUD. |
ciso_assistant_api_quick_start_create |
GOVERNANCETOOL |
api_quick_start_create |
ciso_assistant_api_reference_controls_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_reference_controls_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_reference_controls_category_retrieve |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_create |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_csf_function_retrieve |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_destroy |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_reference_controls_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_partial_update |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_provider_retrieve |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_reference_controls_sync_applied_controls_create |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_syncable_applied_controls_retrieve |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_reference_controls_update |
COMPLIANCETOOL |
API endpoint that allows reference controls to be viewed or edited. |
ciso_assistant_api_representatives_batch_action_create |
THIRD_PARTYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_representatives_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_representatives_create |
THIRD_PARTYTOOL |
API endpoint that allows representatives to be viewed or edited. |
ciso_assistant_api_representatives_destroy |
THIRD_PARTYTOOL |
API endpoint that allows representatives to be viewed or edited. |
ciso_assistant_api_representatives_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_representatives_object_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows representatives to be viewed or edited. |
ciso_assistant_api_representatives_partial_update |
THIRD_PARTYTOOL |
API endpoint that allows representatives to be viewed or edited. |
ciso_assistant_api_representatives_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_representatives_update |
THIRD_PARTYTOOL |
API endpoint that allows representatives to be viewed or edited. |
ciso_assistant_api_requirement_assessments_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_requirement_assessments_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_requirement_assessments_create |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_destroy |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_extended_result_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_requirement_assessments_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_partial_update |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_per_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_result_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_requirement_assessments_status_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_suggestions_applied_controls_create |
COMPLIANCETOOL |
api_requirement_assessments_suggestions_applied_controls_create |
ciso_assistant_api_requirement_assessments_suggestions_applied_controls_retrieve |
COMPLIANCETOOL |
api_requirement_assessments_suggestions_applied_controls_retrieve |
ciso_assistant_api_requirement_assessments_to_review_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_todo_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_updatables_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assessments_update |
COMPLIANCETOOL |
API endpoint that allows requirement assessments to be viewed or edited. |
ciso_assistant_api_requirement_assignments_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_requirement_assignments_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_requirement_assignments_create |
COMPLIANCETOOL |
API endpoint that allows requirement assignments to be viewed or edited. |
ciso_assistant_api_requirement_assignments_destroy |
COMPLIANCETOOL |
API endpoint that allows requirement assignments to be viewed or edited. |
ciso_assistant_api_requirement_assignments_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_requirement_assignments_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirement assignments to be viewed or edited. |
ciso_assistant_api_requirement_assignments_partial_update |
COMPLIANCETOOL |
API endpoint that allows requirement assignments to be viewed or edited. |
ciso_assistant_api_requirement_assignments_requirements_list_retrieve |
COMPLIANCETOOL |
Returns the scoped requirements list for this assignment. |
ciso_assistant_api_requirement_assignments_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_requirement_assignments_set_status_create |
COMPLIANCETOOL |
Transition assignment to a new status. |
ciso_assistant_api_requirement_assignments_update |
COMPLIANCETOOL |
API endpoint that allows requirement assignments to be viewed or edited. |
ciso_assistant_api_requirement_mapping_sets_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_requirement_mapping_sets_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_requirement_mapping_sets_create |
COMPLIANCETOOL |
api_requirement_mapping_sets_create |
ciso_assistant_api_requirement_mapping_sets_destroy |
COMPLIANCETOOL |
api_requirement_mapping_sets_destroy |
ciso_assistant_api_requirement_mapping_sets_graph_data_retrieve |
COMPLIANCETOOL |
api_requirement_mapping_sets_graph_data_retrieve |
ciso_assistant_api_requirement_mapping_sets_graph_data_retrieve_2 |
COMPLIANCETOOL |
api_requirement_mapping_sets_graph_data_retrieve_2 |
ciso_assistant_api_requirement_mapping_sets_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_requirement_mapping_sets_object_retrieve |
COMPLIANCETOOL |
api_requirement_mapping_sets_object_retrieve |
ciso_assistant_api_requirement_mapping_sets_partial_update |
COMPLIANCETOOL |
api_requirement_mapping_sets_partial_update |
ciso_assistant_api_requirement_mapping_sets_provider_retrieve |
COMPLIANCETOOL |
api_requirement_mapping_sets_provider_retrieve |
ciso_assistant_api_requirement_mapping_sets_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_requirement_mapping_sets_update |
COMPLIANCETOOL |
api_requirement_mapping_sets_update |
ciso_assistant_api_requirement_nodes_batch_action_create |
COMPLIANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_requirement_nodes_cascade_info_retrieve |
COMPLIANCETOOL |
Cascade preview: |
ciso_assistant_api_requirement_nodes_create |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_destroy |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_inspect_requirement_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_list |
COMPLIANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_requirement_nodes_object_retrieve |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_partial_update |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_retrieve |
COMPLIANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_requirement_nodes_serve_image_retrieve |
COMPLIANCETOOL |
Serve an image attachment belonging to this requirement node. |
ciso_assistant_api_requirement_nodes_update |
COMPLIANCETOOL |
API endpoint that allows requirements to be viewed or edited. |
ciso_assistant_api_requirement_nodes_upload_image_create |
COMPLIANCETOOL |
Upload an image file and attach it to this requirement node. |
ciso_assistant_api_resilience_asset_assessments_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_resilience_asset_assessments_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_resilience_asset_assessments_create |
RESILIENCETOOL |
api_resilience_asset_assessments_create |
ciso_assistant_api_resilience_asset_assessments_dependency_graph_retrieve |
RESILIENCETOOL |
Returns graph data for visualizing asset dependencies. |
ciso_assistant_api_resilience_asset_assessments_destroy |
RESILIENCETOOL |
api_resilience_asset_assessments_destroy |
ciso_assistant_api_resilience_asset_assessments_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_resilience_asset_assessments_metrics_retrieve |
RESILIENCETOOL |
api_resilience_asset_assessments_metrics_retrieve |
ciso_assistant_api_resilience_asset_assessments_object_retrieve |
RESILIENCETOOL |
api_resilience_asset_assessments_object_retrieve |
ciso_assistant_api_resilience_asset_assessments_partial_update |
RESILIENCETOOL |
api_resilience_asset_assessments_partial_update |
ciso_assistant_api_resilience_asset_assessments_quali_impact_retrieve |
RESILIENCETOOL |
api_resilience_asset_assessments_quali_impact_retrieve |
ciso_assistant_api_resilience_asset_assessments_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_resilience_asset_assessments_risk_matrix_retrieve |
RESILIENCETOOL |
api_resilience_asset_assessments_risk_matrix_retrieve |
ciso_assistant_api_resilience_asset_assessments_update |
RESILIENCETOOL |
api_resilience_asset_assessments_update |
ciso_assistant_api_resilience_business_impact_analysis_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_resilience_business_impact_analysis_build_table_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_build_table_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_resilience_business_impact_analysis_create |
RESILIENCETOOL |
api_resilience_business_impact_analysis_create |
ciso_assistant_api_resilience_business_impact_analysis_destroy |
RESILIENCETOOL |
api_resilience_business_impact_analysis_destroy |
ciso_assistant_api_resilience_business_impact_analysis_export_csv_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_export_csv_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_export_xlsx_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_export_xlsx_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_resilience_business_impact_analysis_metrics_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_metrics_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_object_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_object_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_partial_update |
RESILIENCETOOL |
api_resilience_business_impact_analysis_partial_update |
ciso_assistant_api_resilience_business_impact_analysis_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_resilience_business_impact_analysis_status_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_status_retrieve |
ciso_assistant_api_resilience_business_impact_analysis_update |
RESILIENCETOOL |
api_resilience_business_impact_analysis_update |
ciso_assistant_api_resilience_business_impact_analysis_xlsx_retrieve |
RESILIENCETOOL |
api_resilience_business_impact_analysis_xlsx_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_resilience_dora_incident_reports_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_resilience_dora_incident_reports_classification_criterion_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_classification_criterion_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_create |
RESILIENCETOOL |
api_resilience_dora_incident_reports_create |
ciso_assistant_api_resilience_dora_incident_reports_destroy |
RESILIENCETOOL |
api_resilience_dora_incident_reports_destroy |
ciso_assistant_api_resilience_dora_incident_reports_export_json_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_export_json_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_incident_classification_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_incident_classification_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_incident_discovery_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_incident_discovery_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_incident_submission_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_incident_submission_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_info_duration_service_downtime_actual_or_estimate_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_info_duration_service_downtime_actual_or_estimate_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_resilience_dora_incident_reports_main_entity_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_main_entity_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_object_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_object_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_partial_update |
RESILIENCETOOL |
api_resilience_dora_incident_reports_partial_update |
ciso_assistant_api_resilience_dora_incident_reports_report_currency_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_report_currency_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_reporting_authority_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_reporting_authority_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_resilience_dora_incident_reports_root_cause_additional_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_root_cause_additional_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_root_cause_detailed_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_root_cause_detailed_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_root_cause_hl_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_root_cause_hl_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_threat_techniques_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_threat_techniques_retrieve |
ciso_assistant_api_resilience_dora_incident_reports_update |
RESILIENCETOOL |
api_resilience_dora_incident_reports_update |
ciso_assistant_api_resilience_dora_incident_reports_validate_report_retrieve |
RESILIENCETOOL |
api_resilience_dora_incident_reports_validate_report_retrieve |
ciso_assistant_api_resilience_escalation_thresholds_batch_action_create |
RESILIENCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_resilience_escalation_thresholds_cascade_info_retrieve |
RESILIENCETOOL |
Cascade preview: |
ciso_assistant_api_resilience_escalation_thresholds_create |
RESILIENCETOOL |
api_resilience_escalation_thresholds_create |
ciso_assistant_api_resilience_escalation_thresholds_destroy |
RESILIENCETOOL |
api_resilience_escalation_thresholds_destroy |
ciso_assistant_api_resilience_escalation_thresholds_list |
RESILIENCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_resilience_escalation_thresholds_object_retrieve |
RESILIENCETOOL |
api_resilience_escalation_thresholds_object_retrieve |
ciso_assistant_api_resilience_escalation_thresholds_partial_update |
RESILIENCETOOL |
api_resilience_escalation_thresholds_partial_update |
ciso_assistant_api_resilience_escalation_thresholds_quali_impact_retrieve |
RESILIENCETOOL |
api_resilience_escalation_thresholds_quali_impact_retrieve |
ciso_assistant_api_resilience_escalation_thresholds_quant_unit_retrieve |
RESILIENCETOOL |
api_resilience_escalation_thresholds_quant_unit_retrieve |
ciso_assistant_api_resilience_escalation_thresholds_retrieve |
RESILIENCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_resilience_escalation_thresholds_risk_matrix_retrieve |
RESILIENCETOOL |
api_resilience_escalation_thresholds_risk_matrix_retrieve |
ciso_assistant_api_resilience_escalation_thresholds_update |
RESILIENCETOOL |
api_resilience_escalation_thresholds_update |
ciso_assistant_api_risk_acceptances_accept_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_risk_acceptances_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_risk_acceptances_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_draft_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_risk_acceptances_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_reject_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_risk_acceptances_revoke_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_state_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_submit_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_to_review_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_acceptances_waiting_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk acceptance to be viewed or edited. |
ciso_assistant_api_risk_assessments_action_plan_budget_overview_list |
RISK_MANAGEMENTTOOL |
Mixin that computes budget aggregation over an applied controls queryset. |
ciso_assistant_api_risk_assessments_action_plan_excel_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_action_plan_list |
RISK_MANAGEMENTTOOL |
api_risk_assessments_action_plan_list |
ciso_assistant_api_risk_assessments_action_plan_pdf_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_risk_assessments_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_risk_assessments_convert_to_quantitative_create |
RISK_MANAGEMENTTOOL |
Convert a qualitative risk assessment to a quantitative risk study. |
ciso_assistant_api_risk_assessments_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_duplicate_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_risk_assessments_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_per_status_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_quality_check_retrieve |
RISK_MANAGEMENTTOOL |
Returns the quality check of the risk assessments |
ciso_assistant_api_risk_assessments_quality_check_retrieve_2 |
RISK_MANAGEMENTTOOL |
Returns the quality check of the risk_assessment |
ciso_assistant_api_risk_assessments_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_risk_assessments_risk_analytics_retrieve |
RISK_MANAGEMENTTOOL |
Analytics data for a single risk assessment. |
ciso_assistant_api_risk_assessments_risk_assessment_csv_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_risk_assessment_pdf_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_risk_assessment_xlsx_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_risk_timeline_retrieve |
RISK_MANAGEMENTTOOL |
Returns risk metrics over time from BuiltinMetricSample snapshots. |
ciso_assistant_api_risk_assessments_status_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_sync_from_ebios_rm_create |
RISK_MANAGEMENTTOOL |
Synchronize an existing risk assessment with its linked EBIOS RM study. |
ciso_assistant_api_risk_assessments_sync_preview_retrieve |
RISK_MANAGEMENTTOOL |
Preview what a sync from EBIOS RM would produce. |
ciso_assistant_api_risk_assessments_sync_to_actions_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_assessments_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk assessments to be viewed or edited. |
ciso_assistant_api_risk_matrices_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_risk_matrices_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_risk_matrices_colors_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_create_draft_create |
RISK_MANAGEMENTTOOL |
Create a new unpublished RiskMatrix with an editing_draft for the visual editor. |
ciso_assistant_api_risk_matrices_create_draft_from_create |
RISK_MANAGEMENTTOOL |
Clone an existing matrix into a new unpublished RiskMatrix with editing_draft. |
ciso_assistant_api_risk_matrices_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_discard_draft_create |
RISK_MANAGEMENTTOOL |
Discard editing_draft without affecting json_definition. |
ciso_assistant_api_risk_matrices_export_yaml_retrieve |
RISK_MANAGEMENTTOOL |
Export a matrix as a library-compatible YAML file. |
ciso_assistant_api_risk_matrices_ids_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_impact_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_import_yaml_create |
RISK_MANAGEMENTTOOL |
Import a library YAML file and create a new draft matrix from it. |
ciso_assistant_api_risk_matrices_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_risk_matrices_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_probability_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_provider_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_publish_draft_create |
RISK_MANAGEMENTTOOL |
Publish editing_draft → json_definition, snapshot history, bump version. |
ciso_assistant_api_risk_matrices_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_risk_matrices_risk_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_save_draft_partial_update |
RISK_MANAGEMENTTOOL |
Update editing_draft with current WIP. Metadata stays draft-scoped until publish. |
ciso_assistant_api_risk_matrices_start_editing_create |
RISK_MANAGEMENTTOOL |
Copy json_definition into editing_draft to begin editing. |
ciso_assistant_api_risk_matrices_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_matrices_used_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk matrices to be viewed or edited. |
ciso_assistant_api_risk_scenarios_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_risk_scenarios_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_risk_scenarios_count_per_level_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_default_ref_id_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_export_csv_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_export_xlsx_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_impact_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_risk_scenarios_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_per_status_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_probability_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_qualifications_count_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_risk_scenarios_strength_of_knowledge_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_sync_to_actions_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_treatment_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_risk_scenarios_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows risk scenarios to be viewed or edited. |
ciso_assistant_api_role_assignments_batch_action_create |
AUTH_USERSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_role_assignments_cascade_info_retrieve |
AUTH_USERSTOOL |
Cascade preview: |
ciso_assistant_api_role_assignments_create |
AUTH_USERSTOOL |
API endpoint that allows role assignments to be viewed or edited. |
ciso_assistant_api_role_assignments_destroy |
AUTH_USERSTOOL |
API endpoint that allows role assignments to be viewed or edited. |
ciso_assistant_api_role_assignments_list |
AUTH_USERSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_role_assignments_object_retrieve |
AUTH_USERSTOOL |
API endpoint that allows role assignments to be viewed or edited. |
ciso_assistant_api_role_assignments_partial_update |
AUTH_USERSTOOL |
API endpoint that allows role assignments to be viewed or edited. |
ciso_assistant_api_role_assignments_retrieve |
AUTH_USERSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_role_assignments_update |
AUTH_USERSTOOL |
API endpoint that allows role assignments to be viewed or edited. |
ciso_assistant_api_search_retrieve |
INTEGRATIONSTOOL |
Universal fuzzy search across all searchable models. |
ciso_assistant_api_security_advisories_autocomplete_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_batch_action_create |
SECURITY_FINDINGSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_security_advisories_cascade_info_retrieve |
SECURITY_FINDINGSTOOL |
Cascade preview: |
ciso_assistant_api_security_advisories_create |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_destroy |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_enrich_create |
SECURITY_FINDINGSTOOL |
Enrich this advisory with data from its source (NVD or EUVD). |
ciso_assistant_api_security_advisories_list |
SECURITY_FINDINGSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_security_advisories_object_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_partial_update |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_retrieve |
SECURITY_FINDINGSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_security_advisories_source_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_advisories_sync_euvd_create |
SECURITY_FINDINGSTOOL |
Sync EUVD exploited vulnerabilities synchronously. |
ciso_assistant_api_security_advisories_sync_kev_create |
SECURITY_FINDINGSTOOL |
Sync KEV feed synchronously. Scheduled async via Huey periodic tasks. |
ciso_assistant_api_security_advisories_update |
SECURITY_FINDINGSTOOL |
API endpoint that allows security advisories to be viewed or edited. |
ciso_assistant_api_security_exceptions_batch_action_create |
SECURITY_FINDINGSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_security_exceptions_cascade_info_retrieve |
SECURITY_FINDINGSTOOL |
Cascade preview: |
ciso_assistant_api_security_exceptions_create |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_destroy |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_export_csv_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_export_xlsx_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_list |
SECURITY_FINDINGSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_security_exceptions_object_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_partial_update |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_retrieve |
SECURITY_FINDINGSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_security_exceptions_sankey_data_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_severity_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_status_retrieve |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_security_exceptions_update |
SECURITY_FINDINGSTOOL |
API endpoint that allows security exceptions to be viewed or edited. |
ciso_assistant_api_serdes_attachment_metadata_retrieve |
INTEGRATIONSTOOL |
GET endpoint that returns paginated metadata for all attachments. |
ciso_assistant_api_serdes_batch_download_attachments_create |
INTEGRATIONSTOOL |
POST endpoint that streams multiple attachments in a custom binary format. |
ciso_assistant_api_serdes_batch_upload_attachments_create |
INTEGRATIONSTOOL |
POST endpoint that accepts multiple attachments in custom binary format. |
ciso_assistant_api_serdes_dump_db_retrieve |
INTEGRATIONSTOOL |
api_serdes_dump_db_retrieve |
ciso_assistant_api_serdes_full_restore_create |
INTEGRATIONSTOOL |
POST endpoint for atomic database + attachments restore. |
ciso_assistant_api_serdes_load_backup_create |
INTEGRATIONSTOOL |
api_serdes_load_backup_create |
ciso_assistant_api_settings_feature_flags_partial_update |
SETTINGSTOOL |
api_settings_feature_flags_partial_update |
ciso_assistant_api_settings_feature_flags_retrieve |
SETTINGSTOOL |
api_settings_feature_flags_retrieve |
ciso_assistant_api_settings_feature_flags_update |
SETTINGSTOOL |
api_settings_feature_flags_update |
ciso_assistant_api_settings_general_default_custom_analytics_dashboard_retrieve |
SETTINGSTOOL |
Return a {dashboard_uuid: dashboard_name} map of dashboards |
ciso_assistant_api_settings_general_default_language_retrieve |
SETTINGSTOOL |
Returns the configured default language. Falls back to English if unset or invalid. |
ciso_assistant_api_settings_general_default_language_retrieve_2 |
SETTINGSTOOL |
api_settings_general_default_language_retrieve_2 |
ciso_assistant_api_settings_general_ebios_radar_parameters_retrieve |
SETTINGSTOOL |
api_settings_general_ebios_radar_parameters_retrieve |
ciso_assistant_api_settings_general_force_language_create |
SETTINGSTOOL |
api_settings_general_force_language_create |
ciso_assistant_api_settings_general_interface_settings_retrieve |
SETTINGSTOOL |
api_settings_general_interface_settings_retrieve |
ciso_assistant_api_settings_general_notifications_settings_retrieve |
SETTINGSTOOL |
api_settings_general_notifications_settings_retrieve |
ciso_assistant_api_settings_general_object_retrieve |
SETTINGSTOOL |
api_settings_general_object_retrieve |
ciso_assistant_api_settings_general_partial_update |
SETTINGSTOOL |
api_settings_general_partial_update |
ciso_assistant_api_settings_general_retrieve |
SETTINGSTOOL |
api_settings_general_retrieve |
ciso_assistant_api_settings_general_security_objective_scale_retrieve |
SETTINGSTOOL |
api_settings_general_security_objective_scale_retrieve |
ciso_assistant_api_settings_general_set_default_dashboard_create |
SETTINGSTOOL |
Partial update of the default_custom_analytics_dashboard key. |
ciso_assistant_api_settings_general_update |
SETTINGSTOOL |
api_settings_general_update |
ciso_assistant_api_settings_global_create |
SETTINGSTOOL |
api_settings_global_create |
ciso_assistant_api_settings_global_destroy |
SETTINGSTOOL |
api_settings_global_destroy |
ciso_assistant_api_settings_global_list |
SETTINGSTOOL |
api_settings_global_list |
ciso_assistant_api_settings_global_partial_update |
SETTINGSTOOL |
api_settings_global_partial_update |
ciso_assistant_api_settings_global_retrieve |
SETTINGSTOOL |
api_settings_global_retrieve |
ciso_assistant_api_settings_global_update |
SETTINGSTOOL |
api_settings_global_update |
ciso_assistant_api_settings_sec_intel_feeds_partial_update |
SETTINGSTOOL |
api_settings_sec_intel_feeds_partial_update |
ciso_assistant_api_settings_sec_intel_feeds_retrieve |
SETTINGSTOOL |
api_settings_sec_intel_feeds_retrieve |
ciso_assistant_api_settings_sec_intel_feeds_update |
SETTINGSTOOL |
api_settings_sec_intel_feeds_update |
ciso_assistant_api_settings_sso_cascade_info_retrieve |
SETTINGSTOOL |
Cascade preview: |
ciso_assistant_api_settings_sso_info_retrieve |
SETTINGSTOOL |
API endpoint that returns the CSRF token. |
ciso_assistant_api_settings_sso_object_retrieve |
SETTINGSTOOL |
api_settings_sso_object_retrieve |
ciso_assistant_api_settings_sso_partial_update |
SETTINGSTOOL |
api_settings_sso_partial_update |
ciso_assistant_api_settings_sso_provider_retrieve |
SETTINGSTOOL |
api_settings_sso_provider_retrieve |
ciso_assistant_api_settings_sso_retrieve |
SETTINGSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_settings_sso_update |
SETTINGSTOOL |
api_settings_sso_update |
ciso_assistant_api_settings_vulnerability_sla_partial_update |
SETTINGSTOOL |
api_settings_vulnerability_sla_partial_update |
ciso_assistant_api_settings_vulnerability_sla_retrieve |
SETTINGSTOOL |
api_settings_vulnerability_sla_retrieve |
ciso_assistant_api_settings_vulnerability_sla_update |
SETTINGSTOOL |
api_settings_vulnerability_sla_update |
ciso_assistant_api_solutions_batch_action_create |
THIRD_PARTYTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_solutions_cascade_info_retrieve |
THIRD_PARTYTOOL |
Cascade preview: |
ciso_assistant_api_solutions_create |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_data_location_processing_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_data_location_storage_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_destroy |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_alternative_providers_identified_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_data_sensitiveness_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_discontinuing_impact_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_has_exit_plan_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_ict_service_type_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_non_substitutability_reason_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_reintegration_possibility_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_reliance_level_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_dora_substitutability_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_export_csv_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_export_xlsx_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_list |
THIRD_PARTYTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_solutions_object_retrieve |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_partial_update |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_solutions_retrieve |
THIRD_PARTYTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_solutions_update |
THIRD_PARTYTOOL |
API endpoint that allows solutions to be viewed or edited. |
ciso_assistant_api_stored_libraries_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_stored_libraries_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_stored_libraries_content_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_content_retrieve |
ciso_assistant_api_stored_libraries_create |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_create |
ciso_assistant_api_stored_libraries_destroy |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_destroy |
ciso_assistant_api_stored_libraries_import_create |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_import_create |
ciso_assistant_api_stored_libraries_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_stored_libraries_locale_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_locale_retrieve |
ciso_assistant_api_stored_libraries_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_object_retrieve |
ciso_assistant_api_stored_libraries_object_type_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_object_type_retrieve |
ciso_assistant_api_stored_libraries_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_partial_update |
ciso_assistant_api_stored_libraries_provider_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_provider_retrieve |
ciso_assistant_api_stored_libraries_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_stored_libraries_tree_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_tree_retrieve |
ciso_assistant_api_stored_libraries_unload_create |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_unload_create |
ciso_assistant_api_stored_libraries_update |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_update |
ciso_assistant_api_stored_libraries_upload_create |
FRAMEWORKS_LIBRARIESTOOL |
api_stored_libraries_upload_create |
ciso_assistant_api_task_nodes_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_task_nodes_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_task_nodes_create |
TASKS_TIMELINETOOL |
api_task_nodes_create |
ciso_assistant_api_task_nodes_destroy |
TASKS_TIMELINETOOL |
api_task_nodes_destroy |
ciso_assistant_api_task_nodes_evidences_list |
TASKS_TIMELINETOOL |
api_task_nodes_evidences_list |
ciso_assistant_api_task_nodes_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_task_nodes_object_retrieve |
TASKS_TIMELINETOOL |
api_task_nodes_object_retrieve |
ciso_assistant_api_task_nodes_partial_update |
TASKS_TIMELINETOOL |
api_task_nodes_partial_update |
ciso_assistant_api_task_nodes_remove_evidence_create |
TASKS_TIMELINETOOL |
api_task_nodes_remove_evidence_create |
ciso_assistant_api_task_nodes_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_task_nodes_status_retrieve |
TASKS_TIMELINETOOL |
api_task_nodes_status_retrieve |
ciso_assistant_api_task_nodes_update |
TASKS_TIMELINETOOL |
api_task_nodes_update |
ciso_assistant_api_task_templates_assigned_to_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_batch_action_create |
TASKS_TIMELINETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_task_templates_calendar_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_cascade_info_retrieve |
TASKS_TIMELINETOOL |
Cascade preview: |
ciso_assistant_api_task_templates_create |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_destroy |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_export_csv_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_export_xlsx_retrieve |
TASKS_TIMELINETOOL |
Export task templates with a summary sheet and individual sheets for each template's task nodes. |
ciso_assistant_api_task_templates_list |
TASKS_TIMELINETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_task_templates_object_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_partial_update |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_per_status_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_retrieve |
TASKS_TIMELINETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_task_templates_status_retrieve |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_update |
TASKS_TIMELINETOOL |
Generic export mixin for CSV/XLSX exports. |
ciso_assistant_api_task_templates_yearly_review_retrieve |
TASKS_TIMELINETOOL |
Get recurrent task templates grouped by folder for yearly review. |
ciso_assistant_api_teams_batch_action_create |
AUTH_USERSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_teams_cascade_info_retrieve |
AUTH_USERSTOOL |
Cascade preview: |
ciso_assistant_api_teams_create |
AUTH_USERSTOOL |
api_teams_create |
ciso_assistant_api_teams_destroy |
AUTH_USERSTOOL |
api_teams_destroy |
ciso_assistant_api_teams_list |
AUTH_USERSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_teams_object_retrieve |
AUTH_USERSTOOL |
api_teams_object_retrieve |
ciso_assistant_api_teams_partial_update |
AUTH_USERSTOOL |
api_teams_partial_update |
ciso_assistant_api_teams_retrieve |
AUTH_USERSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_teams_update |
AUTH_USERSTOOL |
api_teams_update |
ciso_assistant_api_terminologies_batch_action_create |
FRAMEWORKS_LIBRARIESTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_terminologies_cascade_info_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Cascade preview: |
ciso_assistant_api_terminologies_create |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_create |
ciso_assistant_api_terminologies_destroy |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_destroy |
ciso_assistant_api_terminologies_field_path_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_field_path_retrieve |
ciso_assistant_api_terminologies_list |
FRAMEWORKS_LIBRARIESTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_terminologies_object_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_object_retrieve |
ciso_assistant_api_terminologies_partial_update |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_partial_update |
ciso_assistant_api_terminologies_retrieve |
FRAMEWORKS_LIBRARIESTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_terminologies_update |
FRAMEWORKS_LIBRARIESTOOL |
api_terminologies_update |
ciso_assistant_api_threats_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_threats_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_threats_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_ids_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_threats_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_provider_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_threats_threats_count_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_threats_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows threats to be viewed or edited. |
ciso_assistant_api_timeline_entries_batch_action_create |
INCIDENTSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_timeline_entries_cascade_info_retrieve |
INCIDENTSTOOL |
Cascade preview: |
ciso_assistant_api_timeline_entries_create |
INCIDENTSTOOL |
api_timeline_entries_create |
ciso_assistant_api_timeline_entries_destroy |
INCIDENTSTOOL |
api_timeline_entries_destroy |
ciso_assistant_api_timeline_entries_entry_type_retrieve |
INCIDENTSTOOL |
api_timeline_entries_entry_type_retrieve |
ciso_assistant_api_timeline_entries_list |
INCIDENTSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_timeline_entries_object_retrieve |
INCIDENTSTOOL |
api_timeline_entries_object_retrieve |
ciso_assistant_api_timeline_entries_partial_update |
INCIDENTSTOOL |
api_timeline_entries_partial_update |
ciso_assistant_api_timeline_entries_retrieve |
INCIDENTSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_timeline_entries_update |
INCIDENTSTOOL |
api_timeline_entries_update |
ciso_assistant_api_user_groups_batch_action_create |
AUTH_USERSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_user_groups_cascade_info_retrieve |
AUTH_USERSTOOL |
Cascade preview: |
ciso_assistant_api_user_groups_create |
AUTH_USERSTOOL |
API endpoint that allows user groups to be viewed or edited |
ciso_assistant_api_user_groups_destroy |
AUTH_USERSTOOL |
API endpoint that allows user groups to be viewed or edited |
ciso_assistant_api_user_groups_list |
AUTH_USERSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_user_groups_object_retrieve |
AUTH_USERSTOOL |
API endpoint that allows user groups to be viewed or edited |
ciso_assistant_api_user_groups_partial_update |
AUTH_USERSTOOL |
API endpoint that allows user groups to be viewed or edited |
ciso_assistant_api_user_groups_retrieve |
AUTH_USERSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_user_groups_update |
AUTH_USERSTOOL |
API endpoint that allows user groups to be viewed or edited |
ciso_assistant_api_user_preferences_partial_update |
AUTH_USERSTOOL |
api_user_preferences_partial_update |
ciso_assistant_api_user_preferences_retrieve |
AUTH_USERSTOOL |
api_user_preferences_retrieve |
ciso_assistant_api_users_batch_action_create |
AUTH_USERSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_users_cascade_info_retrieve |
AUTH_USERSTOOL |
Cascade preview: |
ciso_assistant_api_users_create |
AUTH_USERSTOOL |
API endpoint that allows users to be viewed or edited |
ciso_assistant_api_users_destroy |
AUTH_USERSTOOL |
API endpoint that allows users to be viewed or edited |
ciso_assistant_api_users_list |
AUTH_USERSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_users_object_retrieve |
AUTH_USERSTOOL |
API endpoint that allows users to be viewed or edited |
ciso_assistant_api_users_partial_update |
AUTH_USERSTOOL |
API endpoint that allows users to be viewed or edited |
ciso_assistant_api_users_retrieve |
AUTH_USERSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_users_update |
AUTH_USERSTOOL |
API endpoint that allows users to be viewed or edited |
ciso_assistant_api_validation_flows_batch_action_create |
GOVERNANCETOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_validation_flows_cascade_info_retrieve |
GOVERNANCETOOL |
Cascade preview: |
ciso_assistant_api_validation_flows_create |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_default_ref_id_retrieve |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_destroy |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_linked_models_retrieve |
GOVERNANCETOOL |
Return available model types that can be linked to validation flows |
ciso_assistant_api_validation_flows_list |
GOVERNANCETOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_validation_flows_object_retrieve |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_partial_update |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_retrieve |
GOVERNANCETOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_validation_flows_status_retrieve |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_validation_flows_update |
GOVERNANCETOOL |
API endpoint that allows validation flows to be viewed or edited. |
ciso_assistant_api_vulnerabilities_autocomplete_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_batch_action_create |
RISK_MANAGEMENTTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_vulnerabilities_cascade_info_retrieve |
RISK_MANAGEMENTTOOL |
Cascade preview: |
ciso_assistant_api_vulnerabilities_create |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_destroy |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_list |
RISK_MANAGEMENTTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_vulnerabilities_object_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_partial_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_refresh_due_dates_create |
RISK_MANAGEMENTTOOL |
Recalculate due_date for all vulnerabilities based on current SLA policy. |
ciso_assistant_api_vulnerabilities_retrieve |
RISK_MANAGEMENTTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_vulnerabilities_sankey_data_retrieve |
RISK_MANAGEMENTTOOL |
Returns vulnerability data structured for Sankey diagram: |
ciso_assistant_api_vulnerabilities_severity_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_status_retrieve |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_vulnerabilities_treemap_data_retrieve |
RISK_MANAGEMENTTOOL |
Returns vulnerability data structured for treemap visualization: |
ciso_assistant_api_vulnerabilities_update |
RISK_MANAGEMENTTOOL |
API endpoint that allows vulnerabilities to be viewed or edited. |
ciso_assistant_api_webhooks_audit_sinks_batch_action_create |
INTEGRATIONSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_webhooks_audit_sinks_cascade_info_retrieve |
INTEGRATIONSTOOL |
Cascade preview: |
ciso_assistant_api_webhooks_audit_sinks_create |
INTEGRATIONSTOOL |
Admin-managed audit-log forwarding destinations (kind=AUDIT_SINK). Folder/IAM |
ciso_assistant_api_webhooks_audit_sinks_destroy |
INTEGRATIONSTOOL |
Admin-managed audit-log forwarding destinations (kind=AUDIT_SINK). Folder/IAM |
ciso_assistant_api_webhooks_audit_sinks_list |
INTEGRATIONSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_webhooks_audit_sinks_object_retrieve |
INTEGRATIONSTOOL |
Admin-managed audit-log forwarding destinations (kind=AUDIT_SINK). Folder/IAM |
ciso_assistant_api_webhooks_audit_sinks_partial_update |
INTEGRATIONSTOOL |
Admin-managed audit-log forwarding destinations (kind=AUDIT_SINK). Folder/IAM |
ciso_assistant_api_webhooks_audit_sinks_replay_create |
INTEGRATIONSTOOL |
Re-emit historical audit events to this sink. Body: {since, until?} (ISO |
ciso_assistant_api_webhooks_audit_sinks_retrieve |
INTEGRATIONSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_webhooks_audit_sinks_update |
INTEGRATIONSTOOL |
Admin-managed audit-log forwarding destinations (kind=AUDIT_SINK). Folder/IAM |
ciso_assistant_api_webhooks_endpoints_batch_action_create |
INTEGRATIONSTOOL |
Perform a batch action on multiple objects. |
ciso_assistant_api_webhooks_endpoints_cascade_info_retrieve |
INTEGRATIONSTOOL |
Cascade preview: |
ciso_assistant_api_webhooks_endpoints_create |
INTEGRATIONSTOOL |
API endpoint to create, list, retrieve, update, and delete |
ciso_assistant_api_webhooks_endpoints_destroy |
INTEGRATIONSTOOL |
API endpoint to create, list, retrieve, update, and delete |
ciso_assistant_api_webhooks_endpoints_list |
INTEGRATIONSTOOL |
Override the list method to inject optimized data into the serializer context. |
ciso_assistant_api_webhooks_endpoints_object_retrieve |
INTEGRATIONSTOOL |
API endpoint to create, list, retrieve, update, and delete |
ciso_assistant_api_webhooks_endpoints_partial_update |
INTEGRATIONSTOOL |
API endpoint to create, list, retrieve, update, and delete |
ciso_assistant_api_webhooks_endpoints_retrieve |
INTEGRATIONSTOOL |
Return a single object with unauthorized related fields masked. |
ciso_assistant_api_webhooks_endpoints_update |
INTEGRATIONSTOOL |
API endpoint to create, list, retrieve, update, and delete |
ciso_assistant_api_webhooks_event_types_retrieve |
INTEGRATIONSTOOL |
Returns a list of all registered event type strings. |
ciso_assistant_serdes_attachment_metadata_retrieve |
INTEGRATIONSTOOL |
GET endpoint that returns paginated metadata for all attachments. |
ciso_assistant_serdes_batch_download_attachments_create |
INTEGRATIONSTOOL |
POST endpoint that streams multiple attachments in a custom binary format. |
ciso_assistant_serdes_batch_upload_attachments_create |
INTEGRATIONSTOOL |
POST endpoint that accepts multiple attachments in custom binary format. |
ciso_assistant_serdes_dump_db_retrieve |
INTEGRATIONSTOOL |
serdes_dump_db_retrieve |
ciso_assistant_serdes_full_restore_create |
INTEGRATIONSTOOL |
POST endpoint for atomic database + attachments restore. |
ciso_assistant_serdes_load_backup_create |
INTEGRATIONSTOOL |
serdes_load_backup_create |
20 action-routed tool(s) (default) · 1565 verbose 1:1 tool(s). Each is enabled unless its <DOMAIN>TOOL toggle is set false; MCP_TOOL_MODE selects the surface (condensed default · verbose 1:1 · both). Auto-generated — do not edit.
A2A Agent
Run A2A Server
export CISO_ASSISTANT_URL="https://ciso.arpa"
export CISO_ASSISTANT_TOKEN="your_token"
ciso-assistant-agent --provider openai --model-id gpt-4o --api-key sk-...
Docker
Build
docker build -t ciso-assistant-api .
Run MCP Server
docker run -d \
--name ciso-assistant-api \
-p 8000:8000 \
-e TRANSPORT=http \
-e CISO_ASSISTANT_URL="https://ciso.arpa" \
-e CISO_ASSISTANT_TOKEN="your_token" \
knucklessg1/ciso-assistant-api:mcp
The
:mcptag is the slim MCP-server image (built fromdocker/Dockerfile --target mcp, installingciso-assistant-api[mcp]). The default:latesttag is the full agent image (--target agent,ciso-assistant-api[agent]) which also bundles the Pydantic AI agent and the epistemic-graph engine — use it when you runciso-assistant-agent(the agent), not just the MCP server. See Container images.
Deploy with Docker Compose
services:
ciso-assistant-api:
image: knucklessg1/ciso-assistant-api:mcp
environment:
- HOST=0.0.0.0
- PORT=8000
- TRANSPORT=http
- CISO_ASSISTANT_URL=https://ciso.arpa
- CISO_ASSISTANT_TOKEN=your_token
ports:
- 8000:8000
Configure mcp.json for AI Integration (e.g. Claude Desktop)
Install the slim
[mcp]extra. The example below installsciso-assistant-api[mcp]— the MCP-server extra that pulls only the FastMCP / FastAPI tooling (agent-utilities[mcp]). It deliberately excludes the heavy agent runtime (the epistemic-graph engine,pydantic-ai,dspy,llama-index,tree-sitter), souvx/container installs are dramatically smaller and faster. Use the full[agent]extra only when you need the integrated Pydantic AI agent (see Installation).
{
"mcpServers": {
"ciso_assistant": {
"command": "uv",
"args": [
"run",
"--with",
"ciso-assistant-api[mcp]",
"ciso-assistant-mcp"
],
"env": {
"CISO_ASSISTANT_URL": "https://ciso.arpa",
"CISO_ASSISTANT_TOKEN": "your_token"
}
}
}
}
Install Python Package
Pick the extra that matches what you want to run:
| Extra | Installs | Use when |
|---|---|---|
ciso-assistant-api[mcp] |
Slim MCP server only (agent-utilities[mcp] — FastMCP/FastAPI) |
You only run the MCP server (smallest install / image) |
ciso-assistant-api[agent] |
Full agent runtime (agent-utilities[agent,logfire] — Pydantic AI + the epistemic-graph engine) |
You run the integrated agent |
ciso-assistant-api[all] |
Everything (mcp + agent) |
Development / both surfaces |
# MCP server only (recommended for tool hosting — slim deps)
uv pip install "ciso-assistant-api[mcp]"
# Full agent runtime (Pydantic AI + epistemic-graph engine)
uv pip install "ciso-assistant-api[agent]"
# Everything (development)
uv pip install "ciso-assistant-api[all]" # or: python -m pip install "ciso-assistant-api[all]"
Container images (:mcp vs :agent)
One multi-stage docker/Dockerfile builds two right-sized images, selected by --target:
| Image tag | Build target | Contents | Entrypoint |
|---|---|---|---|
knucklessg1/ciso-assistant-api:mcp |
--target mcp |
ciso-assistant-api[mcp] — slim, no engine/pydantic-ai/dspy/llama-index/tree-sitter |
ciso-assistant-mcp |
knucklessg1/ciso-assistant-api:latest |
--target agent (default) |
ciso-assistant-api[agent] — full agent runtime + epistemic-graph engine |
ciso-assistant-agent |
docker build --target mcp -t knucklessg1/ciso-assistant-api:mcp docker/ # slim MCP server
docker build --target agent -t knucklessg1/ciso-assistant-api:latest docker/ # full agent
docker/mcp.compose.yml runs the slim :mcp server; docker/agent.compose.yml runs the
agent (:latest) with a co-located :mcp sidecar.
Knowledge-graph database (epistemic-graph)
The full agent ([agent] / :latest) embeds the epistemic-graph engine (pulled in
transitively via agent-utilities[agent]). For production — or to share one knowledge graph
across multiple agents — run epistemic-graph as its own database container and point the
agent at it instead of embedding it. Deployment recipes (single-node + Raft HA), connection
config, and the full database architecture (with diagrams) are documented in the
epistemic-graph deployment guide.
The slim [mcp] server does not require the database.
Documentation
The complete documentation is published as the official documentation site and is the source of truth for installation, usage, and deployment.
| Page | Covers |
|---|---|
| Overview | the action-routed tool surface and architecture |
| Installation | pip, source, extras, prebuilt Docker image |
| Usage (API / CLI / MCP) | the MCP tools, the Api client, the CLI |
| Deployment | run the MCP and agent servers, Compose, env config |
Repository Owners
Deploy with agent-os-genesis
This package can be provisioned for you — skill-guided — by the agent-os-genesis
universal skill (its single-package deploy mode): it picks your install method, seeds
secrets to OpenBao/Vault (or .env), trusts your enterprise CA, registers the MCP
server, and verifies it — the same machinery that stands up the whole Agent OS, narrowed
to just this package. Ask your agent to "deploy ciso-assistant-api with agent-os-genesis".
| Install mode | Command |
|---|---|
| Bare-metal, prod (PyPI) | uvx ciso-assistant-mcp · or uv tool install ciso-assistant-api |
| Bare-metal, dev (editable) | uv pip install -e ".[all]" · or pip install -e ".[all]" |
| Container, prod | deploy knucklessg1/ciso-assistant-api:latest via docker-compose / swarm / podman / podman-compose / kubernetes |
| Container, dev (editable) | deploy docker/compose.dev.yml (source-mounted at /src; edits live on restart) |
Secrets are read-existing + seeded via vault_sync — you are only prompted for what's missing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ciso_assistant_api-1.0.1.tar.gz.
File metadata
- Download URL: ciso_assistant_api-1.0.1.tar.gz
- Upload date:
- Size: 349.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ffbee6ad6266df0b06154de74a4e8b389cbd63156a092d393c90d5b3674280
|
|
| MD5 |
e0fbb1752e4a18b82fb9da9a77c656af
|
|
| BLAKE2b-256 |
2cd903a5ae29ffabd9e6ba0c8e6eb7fd9f99c9ca12da88b529eeea4cf2f74d08
|
File details
Details for the file ciso_assistant_api-1.0.1-py3-none-any.whl.
File metadata
- Download URL: ciso_assistant_api-1.0.1-py3-none-any.whl
- Upload date:
- Size: 335.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6e80477f0ef8bb8555ad3131ccab178e79c8b4df5c918a086d2d639a14f7c1a
|
|
| MD5 |
063100e089dfa3c1c57a6e072ebbf131
|
|
| BLAKE2b-256 |
8f201941f8e67835eaa0f3196fefb25d2cd67e35d391a7c3c2de89af9a00ec5a
|