action box_get_groups { label: "List groups for enterprise" description: "Retrieves all of the groups for a given enterprise. The user\nmust have admin permissions to inspect enterprise's groups." provider: box method: GET path: "/groups" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } filter_term: { type: "string" } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" description: "A list of groups." } }