> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omneo.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List members of a group — one endpoint for every type, so consumers never
branch. Rows share the {profile_id, record_type, record} shape:

> static    → group_profiles rows (active by default; ?include_removed=1 for history)
  dynamic   → the latest COMPLETED snapshot's matched work items (empty
              until a snapshot completes — snapshots stay internal)
  favourite → active connections across all owners (one row per owner-member edge)



## OpenAPI

````yaml get /v3/groups/definitions/{group}/profiles
openapi: 3.1.0
info:
  title: Omneo
  version: 0.0.1
servers:
  - url: https://api.{tenant}.getomneo.com/api
    variables:
      tenant:
        default: example
security: []
paths:
  /v3/groups/definitions/{group}/profiles:
    get:
      tags:
        - Group Profile
      summary: >-
        List members of a group — one endpoint for every type, so consumers
        never

        branch. Rows share the {profile_id, record_type, record} shape:
      description: >-
        static    → group_profiles rows (active by default; ?include_removed=1
        for history)
          dynamic   → the latest COMPLETED snapshot's matched work items (empty
                      until a snapshot completes — snapshots stay internal)
          favourite → active connections across all owners (one row per owner-member edge)
      operationId: groups.definitions.profiles.index
      parameters:
        - name: group
          in: path
          required: true
          description: The group ID
          schema:
            type: integer
        - name: page[size]
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Array of `GroupMember`
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/GroupMember'
                required:
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
components:
  schemas:
    GroupMember:
      anyOf:
        - type: object
          properties:
            profile_id:
              type: string
            record_type:
              type: string
              const: group_profile
            record:
              type: object
              properties:
                id:
                  type: string
                added_at:
                  type: string
                expires_at:
                  type: string
                removed_at:
                  type: string
                removed_reason:
                  type: string
                added_by_profile_id:
                  type: string
                removed_by_profile_id:
                  type: string
                source_type:
                  type: string
                source_id:
                  type: string
                meta:
                  type: string
              required:
                - id
                - added_at
                - expires_at
                - removed_at
                - removed_reason
                - added_by_profile_id
                - removed_by_profile_id
                - source_type
                - source_id
                - meta
          required:
            - profile_id
            - record_type
            - record
        - type: object
          properties:
            profile_id:
              type: string
            record_type:
              type: string
              const: group_snapshot_profile
            record:
              type: object
              properties:
                id:
                  type: string
                group_snapshot_id:
                  type: string
                result_status:
                  type: string
                matched_group_rule_ids:
                  type: string
                processed_at:
                  type: string
              required:
                - id
                - group_snapshot_id
                - result_status
                - matched_group_rule_ids
                - processed_at
          required:
            - profile_id
            - record_type
            - record
        - type: object
          properties:
            profile_id:
              type: string
            record_type:
              type: string
              const: connection
            record:
              type: object
              properties:
                id:
                  type: string
                connection_definition_id:
                  type: string
                connected_id:
                  type: string
                connector_id:
                  type: string
                status:
                  type: string
                connected_at:
                  type: string
              required:
                - id
                - connection_definition_id
                - connected_id
                - connector_id
                - status
                - connected_at
          required:
            - profile_id
            - record_type
            - record
      title: GroupMember
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    AuthorizationException:
      description: Authorization error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message

````