action figshare_private_article_authors_list { label: "List article authors" description: "List article authors" provider: figshare method: GET path: "/account/articles/{article_id}/authors" encoding: json output: { type: "array" items: { type: "object" required: ["id", "full_name", "is_active", "url_name", "orcid_id"] properties: { full_name: { type: "string" description: "Author full name" } id: { type: "integer" format: "int64" description: "Author id" } is_active: { type: "boolean" description: "True if author has published items" } orcid_id: { type: "string" description: "Author Orcid" } url_name: { type: "string" description: "Author url name" } } } } }