Aikido Get

Aikido Get

Certified

Get details of an Aikido issue group

Fetches full details for a single Aikido issue group by ID.

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

Fetch details of a specific issue group

yaml
id: get_issue_details
namespace: company.security

inputs:
  - id: issue_group_id
    type: STRING

tasks:
  - id: get_issue
    type: io.kestra.plugin.aikido.issues.Get
    clientId: "{{ secret('AIKIDO_CLIENT_ID') }}"
    clientSecret: "{{ secret('AIKIDO_CLIENT_SECRET') }}"
    issueGroupId: "{{ inputs.issue_group_id }}"
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.

Issue group ID

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.

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

The issue group's details

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.