action figshare_private_articles_search { label: "Private Articles search" description: "Returns a list of private articles filtered by the search parameters" provider: figshare method: POST path: "/account/articles/search" encoding: json input: { type: "object" properties: { resource_id: { type: "string" description: "only return collections with this resource_id" } } } output: { type: "array" items: { type: "object" required: ["project_id", "id", "title", "doi", "handle", "group_id", "url", "url_public_html", "url_public_api", "url_private_html", "url_private_api", "published_date", "timeline", "thumb", "defined_type", "defined_type_name"] properties: { project_id: { type: "integer" format: "int64" description: "Project id for this article." } } } } }