action snyk_get_issue_counts { label: "Get issue counts" description: "" provider: snyk method: POST path: "/reporting/counts/issues" encoding: json input: { type: "object" properties: { from: { type: "string" } groupBy: { type: "string" enum: ["severity", "fixable", "project,[severity|fixable]"] } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }