action opensuse_get_request_view_collection { label: "Get a collection of requests for a specified target" description: "Get a collection of requests for a specified target. **NOTE:**\nYou need to set at least one of the following parameters in order\nto use this endpoint:\n\n* `user`\n* `project`\n* `package`\n* `states`\n* `types`\n* `ids`\n" provider: opensuse method: GET path: "/request?view=collection" encoding: json input: { type: "object" properties: { ids: { type: "string" } limit: { type: "integer" } package: { type: "string" } project: { type: "string" } roles: { type: "string" } states: { type: "string" } types: { type: "string" } user: { type: "string" } withfullhistory: { type: "string" } withhistory: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }