action figshare_private_institution_account_group_role_delete { label: "Delete Institution Account Group Role" description: "Delete Institution Account Group Role" provider: figshare method: DELETE path: "/account/institution/roles/{account_id}/{group_id}/{role_id}" encoding: json input: { type: "object" properties: { account_id: { type: "integer" format: "int64" } group_id: { type: "integer" format: "int64" } role_id: { type: "integer" format: "int64" } } required: ["account_id", "group_id", "role_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }