action snyk_list_all_project_snapshots { label: "List all project snapshots" description: "" provider: snyk method: POST path: "/org/{orgId}/project/{projectId}/history" encoding: json input: { type: "object" properties: { filters: { type: "object" properties: { imageId: { type: "string" description: "For container projects, filter by the ID of the image" } } } orgId: { type: "string" } page: { type: "number" } perPage: { type: "number" } projectId: { type: "string" } } required: ["orgId", "projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }