action figshare_private_institution_accounts_update { label: "Update Institution Account" description: "Update Institution Account" provider: figshare method: PUT path: "/account/institution/accounts/{account_id}" encoding: json input: { type: "object" properties: { account_id: { type: "integer" format: "int64" } 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" } is_active: { type: "boolean" description: "Is account active" } } required: ["account_id", "group_id", "is_active"] additionalProperties: false } output: { type: "object" additionalProperties: true } }