action snyk_get_list_of_issues { label: "Get list of issues" description: "" provider: snyk method: POST path: "/reporting/issues/" encoding: json input: { type: "object" properties: { from: { type: "string" } groupBy: { type: "string" enum: ["issue"] } order: { type: "string" } page: { type: "number" } perPage: { type: "number" } sortBy: { type: "string" enum: ["severity", "issueTitle", "projectName", "isFixed", "isPatched", "isIgnored", "introducedDate", "isUpgradable", "isPatchable", "priorityScore"] } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }