action snyk_list_all_project_issue_paths { label: "List all project issue paths" description: "" provider: snyk method: GET path: "/org/{orgId}/project/{projectId}/issue/{issueId}/paths" encoding: json input: { type: "object" properties: { issueId: { type: "string" } orgId: { type: "string" } page: { type: "number" } perPage: { type: "number" } projectId: { type: "string" } snapshotId: { type: "string" } } required: ["issueId", "orgId", "projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }