action snyk_list_all_dependencies { label: "List all dependencies" description: "" provider: snyk method: POST path: "/org/{orgId}/dependencies" encoding: json input: { type: "object" properties: { filters: { type: "object" properties: { depStatus: { type: "string" description: "Status of the dependency. Requires reporting entitlement. Options: `deprecated` - Include only deprecated packages; `notDeprecated` - Include all packages that are not marked as deprecated; `any` - Include all packages (default)" } dependencies: { description: "The list of dependency IDs to filter the results by (i.e amdefine@1.0.1 or org.javassist:javassist@3.18.1-GA)" type: "object" } languages: { type: "array" description: "The type of languages to filter the results by" items: { type: "object" } } licenses: { description: "The list of license IDs to filter the results by" type: "object" } projects: { description: "The list of project IDs to filter the results by" type: "object" } severity: { type: "array" description: "The severities to filter the results by" items: { type: "object" } } } } order: { type: "string" enum: ["asc", "desc"] } orgId: { type: "string" } page: { type: "number" } perPage: { type: "number" } sortBy: { type: "string" enum: ["projects", "dependency", "severity", "dependenciesWithIssues"] } } required: ["orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }