action figshare_private_author_details { label: "Author details" description: "View author details" provider: figshare method: GET path: "/account/authors/{author_id}" encoding: json output: { type: "object" required: ["first_name", "full_name", "group_id", "id", "institution_id", "is_active", "is_public", "job_title", "last_name", "orcid_id", "url_name"] properties: { first_name: { type: "string" description: "First Name" } group_id: { type: "integer" format: "int64" description: "Group id" } institution_id: { type: "integer" format: "int64" description: "Institution id" } is_public: { type: "integer" format: "int64" description: "if 1 then the author has published items" } job_title: { type: "string" description: "Job title" } last_name: { type: "string" description: "Last Name" } } } }