action files_get_groups_id { label: "Show Group" description: "Show Group" provider: files method: GET path: "/groups/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "List Groups" properties: { admin_ids: { type: "string" description: "Comma-delimited list of user IDs who are group administrators (separated by commas)" } id: { type: "integer" format: "int32" description: "Group ID" } name: { type: "string" description: "Group name" } notes: { type: "string" description: "Notes about this group" } user_ids: { type: "string" description: "Comma-delimited list of user IDs who belong to this group (separated by commas)" } usernames: { type: "string" description: "Comma-delimited list of usernames who belong to this group (separated by commas)" } } } }