Aikido ListOpen

Aikido ListOpen

Certified

List Aikido open issue groups

Lists open issue groups as seen in the Aikido feed, sorted descending by priority, and pages through every matching result. Aikido's /open-issue-groups endpoint has no server-side severity filter, so severities is applied client-side after fetching each page. fetchType=STORE is recommended for large result sets: it streams results to internal storage instead of holding them all in memory or in the execution output.

yaml
type: io.kestra.plugin.aikido.issues.ListOpen

List every open critical or high severity issue

yaml
id: list_critical_issues
namespace: company.security

tasks:
  - id: list_issues
    type: io.kestra.plugin.aikido.issues.ListOpen
    clientId: "{{ secret('AIKIDO_CLIENT_ID') }}"
    clientSecret: "{{ secret('AIKIDO_CLIENT_SECRET') }}"
    severities:
      - CRITICAL
      - HIGH
    fetchType: FETCH
Properties

OAuth2 client ID

Client ID of an Aikido API client with the OAuth2 scopes required by the tasks and triggers being used (for example issues: read, repositories: write). Client credentials are created in the Aikido console under Settings > API access.

OAuth2 client secret

Client secret of the Aikido API client. Exchanged for a short-lived JWT Bearer token on first use (and transparently refreshed before it expires); never logged or included in error messages.

Defaulthttps://app.aikido.dev

Aikido API base URL

Base URL of the Aikido Security application for your account's region: https://app.aikido.dev (Europe, default), https://app.us.aikido.dev (United States), https://app.au.aikido.dev (Australia), or https://app.me.aikido.dev (Middle East). The OAuth2 token endpoint is derived from this same host, so a region override applies to both authentication and API calls.

DefaultFETCH
Possible Values
STOREFETCHFETCH_ONENONE

Fetch type

FETCH_ONE outputs the first matching issue group, FETCH outputs every matching issue group, STORE streams every matching issue group to internal storage and returns a URI. Defaults to FETCH.

Filter by code repository ID

Filter by container repository ID

Filter by issue type

For example open_source, leaked_secret, sast, or iac.

Filter by issue group status

For example new, todo, or task_open.

Filter by team ID

Default20

Page size

Internal pagination page size, from 10 to 100. Defaults to 20.

Reference (ref) of the pluginDefaults to apply to this task.

SubTypestring
Possible Values
CRITICALHIGHMEDIUMLOW

Only include issues at these severities

Applied client-side after fetching, since the API has no server-side severity filter on this endpoint. Matches every severity when omitted.

First fetched issue group

Populated only when fetchType=FETCH_ONE.

Definitions
descriptionstring

A short description of this issue

first_detected_atinteger

Unix timestamp (seconds) when this issue was first detected

group_statusstring

The current status of the issue group

One of new, todo, task_open, task_closed, or pull_request_open.

how_to_fixstring

How to fix this issue

idinteger

The issue group's ID in Aikido

locationsarray

Locations where this issue was found

idinteger

The location's ID in Aikido

namestring

The location's name

typestring

The location's type

One of cloud, code_repo, or container_repo.

related_cve_idsarray
SubTypestring

CVE IDs related to this issue group

severitystring

Human-friendly severity

One of critical, high, medium, or low.

severity_scoreinteger

Numeric severity, from 1 (lowest) to 100 (highest)

time_to_fix_minutesinteger

Estimated time in minutes to fix this issue

titlestring

A human-readable title for this issue group

typestring

The type of issues in this group

One of open_source, leaked_secret, cloud, iac, sast, surface_monitoring, malware, eol, scm_security, ai_pentest, or license.

Fetched issue groups

Populated only when fetchType=FETCH.

Definitions
descriptionstring

A short description of this issue

first_detected_atinteger

Unix timestamp (seconds) when this issue was first detected

group_statusstring

The current status of the issue group

One of new, todo, task_open, task_closed, or pull_request_open.

how_to_fixstring

How to fix this issue

idinteger

The issue group's ID in Aikido

locationsarray

Locations where this issue was found

idinteger

The location's ID in Aikido

namestring

The location's name

typestring

The location's type

One of cloud, code_repo, or container_repo.

related_cve_idsarray
SubTypestring

CVE IDs related to this issue group

severitystring

Human-friendly severity

One of critical, high, medium, or low.

severity_scoreinteger

Numeric severity, from 1 (lowest) to 100 (highest)

time_to_fix_minutesinteger

Estimated time in minutes to fix this issue

titlestring

A human-readable title for this issue group

typestring

The type of issues in this group

One of open_source, leaked_secret, cloud, iac, sast, surface_monitoring, malware, eol, scm_security, ai_pentest, or license.

Number of issue groups fetched

Formaturi

Stored data URI

Populated only when fetchType=STORE.