action figshare_private_account_institution_user { label: "Private Account Institution User" description: "Retrieve institution user information using the account_id" provider: figshare method: GET path: "/account/institution/users/{account_id}" encoding: json input: { type: "object" properties: { account_id: { type: "integer" format: "int64" } } required: ["account_id"] additionalProperties: false } output: { type: "object" required: ["first_name", "id", "is_active", "is_public", "job_title", "last_name", "name", "orcid_id", "url_name"] properties: { first_name: { type: "string" description: "First Name" } id: { type: "integer" format: "int64" description: "User id" } is_active: { type: "boolean" description: "Account activity status" } is_public: { type: "boolean" description: "Account public status" } job_title: { type: "string" description: "User Job title" } last_name: { type: "string" description: "Last Name" } name: { type: "string" description: "Full Name" } orcid_id: { type: "string" description: "Orcid associated to this User" } url_name: { type: "string" description: "Name that appears in website url" } } } }