action drchrono_user_groups_read { label: "user_groups_read" description: "Retrieve an existing user group" provider: drchrono method: GET path: "/api/user_groups/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { archived: { type: "boolean" description: "Group is archived or not" } created_at: { type: "string" } id: { type: "integer" } members: { type: "array" description: "Users in this user group." items: { type: "string" description: "ID of `/api/users`" } } name: { type: "string" } practice_group: { type: "string" description: "Practice group this user group belongs to" } updated_at: { type: "string" } } } }