You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Snyk is a popular solution for vulnerabilities detection in the code and the applications. Issues created by Snyk should be tracked in the scope of the cyber security practice.
Use Case
Snyk API provides two endpoint for fetching the issues -- per group and per organization:
project_id - (optional) a string attribute, must be an UUID
group_id - (optional) a string attribute, must be an UUID
scan_item_id -- (optional) a string attribute
scan_item.type -- (optional) a string attribute. Supported values are project and environment
type -- (optional) a string attribute. Supported values are package_vulnerability, license, cloud, code, custom, config.
updated_before -- (optional) a string attribute
updated_after -- (optional) a string attribute
created_before -- (optional) a string attribute
created_after -- (optional) a string attribute
effective_severity_level -- (optional) a string attribute. Supported values are: info, low, medium, high and critical
status -- (optional) an array of strings. Supported array values are open and resolved
ignored -- (optional) a boolean attribute
limit -- (optional) an int attribute
constraints:
either project_id or group_id attribute must be set
Immutable query parameters:
version is at least to 2024-01-23
The plugin takes care of pagination according to limit value that limits the number of overall results (not per page!).
The plugin returns the list of issues, concatenated over multiple pages.
Description
Snyk is a popular solution for vulnerabilities detection in the code and the applications. Issues created by Snyk should be tracked in the scope of the cyber security practice.
Use Case
Snyk API provides two endpoint for fetching the issues -- per group and per organization:
/groups/{group_id}/issues
endpoint (docs)/orgs/{org_id}/issues
endpoint (docs)Requirements
api_key
- a required string attributeproject_id
- (optional) a string attribute, must be an UUIDgroup_id
- (optional) a string attribute, must be an UUIDscan_item_id
-- (optional) a string attributescan_item.type
-- (optional) a string attribute. Supported values areproject
andenvironment
type
-- (optional) a string attribute. Supported values arepackage_vulnerability
,license
,cloud
,code
,custom
,config
.updated_before
-- (optional) a string attributeupdated_after
-- (optional) a string attributecreated_before
-- (optional) a string attributecreated_after
-- (optional) a string attributeeffective_severity_level
-- (optional) a string attribute. Supported values are:info
,low
,medium
,high
andcritical
status
-- (optional) an array of strings. Supported array values areopen
andresolved
ignored
-- (optional) a boolean attributelimit
-- (optional) an int attributeproject_id
orgroup_id
attribute must be setImmutable query parameters:
version
is at least to2024-01-23
The plugin takes care of pagination according to
limit
value that limits the number of overall results (not per page!).The plugin returns the list of issues, concatenated over multiple pages.
Additional Information
The text was updated successfully, but these errors were encountered: