action figshare_private_institution_accounts_create { label: "Create new Institution Account" description: "Create a new Account by sending account information" provider: figshare method: POST path: "/account/institution/accounts" encoding: json input: { type: "object" required: ["email", "first_name"] properties: { email: { type: "string" description: "Email of account" } first_name: { type: "string" description: "First Name" } group_id: { type: "integer" format: "int64" description: "Not applicable to regular users. This field is reserved to institutions/publishers with access to assign to specific groups" } institution_user_id: { type: "string" description: "Institution user id" } is_active: { type: "boolean" description: "Is account active" } last_name: { type: "string" description: "Last Name" } quota: { type: "integer" format: "int64" description: "Account quota" } symplectic_user_id: { type: "string" description: "Symplectic user id" } } } output: { type: "object" additionalProperties: true } }