action figshare_private_collections_list { label: "Private Collections List" description: "List private collections" provider: figshare method: GET path: "/account/collections" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } order: { type: "string" enum: ["published_date", "modified_date", "views", "shares", "cites"] } order_direction: { type: "string" enum: ["asc", "desc"] } page: { type: "integer" format: "int64" } page_size: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "title", "doi", "handle", "url", "timeline", "published_date"] properties: { doi: { type: "string" description: "Collection DOI" } handle: { type: "string" description: "Collection Handle" } id: { type: "integer" format: "int64" description: "Collection id" } published_date: { type: "string" description: "Date when collection was published " } timeline: { type: "object" required: ["posted", "submission", "revision", "firstOnline", "publisherPublication", "publisherAcceptance"] properties: { posted: { type: "string" description: "Posted date" } revision: { type: "string" description: "Revision date from curation (if curated)" } submission: { type: "string" description: "Submission date in curation (if curated)" } } } title: { type: "string" description: "Collection title" } url: { type: "string" description: "Api endpoint" } } } } }