action figshare_account_article_report_generate { label: "Initiate a new Report" description: "Initiate a new Article Report for this Account. There is a limit of 1 report per day." provider: figshare method: POST path: "/account/articles/export" encoding: json output: { type: "object" required: ["account_id", "created_date", "download_url", "group_id", "id", "status"] properties: { account_id: { type: "integer" format: "int64" description: "The ID of the account which generated this report." } created_date: { type: "string" description: "Date when the AccountReport was requested" } download_url: { type: "string" format: "url" description: "The download link for the generated XLSX" } group_id: { type: "integer" format: "int64" description: "The group ID that was used to filter the report, if any." } id: { type: "integer" format: "int64" description: "A unique ID for the AccountRecord" } status: { type: "string" description: "Status of the report" enum: ["missing", "pending", "done"] } } } }