action truora_list_reports { label: "List Reports" description: "Lists all reports asociated with the client or user requesting." provider: truora method: GET path: "/v1/reports" encoding: json input: { type: "object" properties: { start_key: { type: "string" } username: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Represents the result of report searches" required: ["reports", "self"] properties: { next: { type: "string" description: "Next page path" } reports: { type: "array" description: "Report list" items: { type: "object" description: "Represents reports" required: ["id", "name", "creation_date", "update_date"] properties: { created_by: { type: "string" description: "name of the user who created the report" } created_checks_count: { type: "integer" description: "Amount of created checks. Returned only when a file is uploaded" } creation_date: { type: "string" format: "date-time" description: "Report creation date" } has_data: { type: "boolean" description: "Indicates whether the report has an associated file" } id: { type: "string" description: "Report ID" } invalid_checks_count: { type: "integer" description: "number of invalid rows in the uploaded file. Returned only when a file is uploaded" } name: { type: "string" description: "Report name" } size: { type: "integer" description: "Uploaded file row count. Returned only when a file is uploaded" } update_date: { type: "string" format: "date-time" description: "Latest modification date of the report" } } } } self: { type: "string" description: "Current page path" } } } }