action box_get_groups_id { label: "Get group" description: "Retrieves information about a group. Only members of this\ngroup or users with admin-level permissions will be able to\nuse this API." provider: box method: GET path: "/groups/{group_id}" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } group_id: { type: "string" } } required: ["group_id"] additionalProperties: false } output: { type: "object" description: "A standard representation of a group, as returned from any\ngroup API endpoints by default" } }