action truora_create_report { label: "Create Report" description: "Creates a Report to which it is possible to associate multiple Checks." provider: truora method: POST path: "/v1/reports" encoding: form output: { type: "object" description: "Reprents the report creation result" required: ["checks", "report"] properties: { checks: { type: "string" description: "Path to background check list" } report: { type: "object" description: "Represents reports" required: ["creation_date", "id", "name", "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: "Path to this resource" } } } }