action figshare_private_institution_groups_list { label: "Private Account Institution Groups" description: "Returns the groups for which the account has administrative privileges (assigned and inherited)." provider: figshare method: GET path: "/account/institution/groups" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name", "resource_id", "parent_id", "association_criteria"] properties: { association_criteria: { type: "string" description: "HR code associated with group, if code exists" } id: { type: "integer" format: "int64" description: "Group id" } name: { type: "string" description: "Group name" } parent_id: { type: "integer" format: "int64" description: "Parent group if any" } resource_id: { type: "string" description: "Group resource id" } } } } }