action figshare_account_article_report { label: "Account Article Report" description: "Return status on all reports generated for the account from the oauth credentials" provider: figshare method: GET path: "/account/articles/export" encoding: json input: { type: "object" properties: { group_id: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "account_id", "created_date", "status", "download_url", "group_id"] 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"] } } } } }