# Get Groups GET / #### Description Retrieves details of all groups within an organiztion, including their names, descriptions, and membership information. Endpoint: GET / Version: 1.0 Security: oauth2 ## Query parameters: - `status` (string) Comma-separated list of statuses (only active by default). Supported values are active and archived. - `expand` (string) Comma separated list of fields to expand. Supported values: userIds. ## Response 200 fields (application/json): - `id` (string) The unique identifier for the group. Example: "abcdef12-3456-7890-abcd-ef1234567890" - `orgId` (string) The unique identifier for the organization the group belongs to. Example: "12345678-1234-5678-1234-123456789012" - `name` (string) The name of the group. Example: "Compliance Managers" - `groupLeadId` (string) The unique identifier of the user who is designated as the group lead. Example: "876654321-1234-5678-8765-123456789012" - `userIds` (array) The list of unique identifiers of users who are in the group. - `createdOn` (string) The date and time the group was created (ISO-8601 format). Example: "2023-01-01T00:00:00Z" - `updatedOn` (string) The date and time the group was last updated (ISO-8601 format). Example: "2023-01-01T00:00:00Z"